I set a sidebar with this discussion. https://sketchplugins.com/d/2221-sidebar-error-in-sketch-v70/9 But the width of this sidebar will scale. How do I disable it from scaling?
yuanchongen Can I see how to add sidebar code
If you want the sidebar to have a fixed size you can add a width constraint on the container view
container.widthAnchor().constraintEqualToConstant(60).setActive(true)
abynim Really appreciate it!