cljsrn

https://github.com/drapanjanas/re-natal | https://github.com/drapanjanas/re-natal/wiki/FAQ | https://github.com/condense/mercury-app/wiki | https://github.com/seantempesta/expo-cljs-template/ https://www.npmjs.com/package/create-expo-cljs-app
benny 2020-07-23T13:50:14.086800Z

sweet thanks @olivergeorge!

lepistane 2020-07-23T16:34:29.090500Z

how do you guys deal with width on different devices? i have split screen and right side of the screen should be populated with grid like views by default i should see 5 columns on all devices (column width should adjust to the device) but i am failing to deal with this does anyone have any suggestion? i've played with https://github.com/marudy/react-native-responsive-screen but the % is different for each device lets say nexus_s column width should be 12.7% and on pixel_2 it should be 10.7% i tried working with flex but i am getting weird behavior because text inside column is variable and when there is little bit of text column width shrinks. any ideas would be helpful

Oliver George 2020-07-23T22:57:35.091400Z

You have dimensions to play with:

Oliver George 2020-07-23T22:57:36.091600Z

https://reactnative.dev/docs/dimensions

Oliver George 2020-07-23T22:58:15.092500Z

Based on that you can create adaptive templates.

Oliver George 2020-07-23T22:59:05.093500Z

I did go looking for a react native implementation of the material design grid system at one point. Something like that could save some pixel math for common layouts.