simply_responsive 0.0.3 simply_responsive: ^0.0.3 copied to clipboard
Utility UI library to help us build a responsive app with ease.
simply_responsive #
A mobile-first widget to help us build a responsive app across mobile, tablet, and desktop with ease. Unlike the CSS 12 grid system, The design of simply_responsive is based on 3-columns design of a desktop website. This has an advantage of being simpler to use than the CSS 12 grid system, at the cost of reduced possible flexibilities. I try to make this library as tested as possible.
And, since it's responsive, it'll be no need for you to lock the orientation of your app to portrait only!
Upcoming Timeline #
- Simply Responsive Navigation Column
- Simply Responsive Right Column and App Bar (auto show drawer & endDrawer)
Getting Started #
There are 3 kind of screen sizes breakpoints with different configuration:
- < 600px: Mobile Screen
- Only center column
- < 768px: Tablet Screen
- All possible mobile screen configuration
- Left and center column
- Center and right column
- Left and right column
- >=768px: Desktop
- All possible tablet screen configuration
- All 3 columns (left, center, right)
How to Use #
SimplyResponsiveBody(
LayoutConfig.build(MediaQuery.of(context).size.width),
leftChild: ListView(
children: [
Text('Home'),
Text('Profile'),
Text('Sign Out'),
]
),
centerChild: ListView(
children: [
Text('Lorem Ipsum'),
Text('Lorem ipsum dolor sit amet')
]
),
rightChild: ListView(
children: [
Text('Tap to like')
Text('Tap to dislike')
]
)
)
Each leftChild
, centerChild
, and rightChild
will always have finite width.
For more info, you can read the dart doc I wrote directly in the library code.