Last updated:
0 purchases
full responsive
Full Responsive #
Responsive design = Fluid design + Adaptive design
The final solution for a full responsive design. With this package you will easily program liquid/fluid designs as well as adaptive designs from your design to your app in the most straightforward way possible.
Fluid design #
On fluid (or liquid) designs, you lay out widgets defining with proportions their sizes.
Adaptive design #
On adaptive design you program a specific UI for every screen size
How to use #
Define in your app this
main(){
FullResponsiveApp(
resolutions:[
Resolution(844,390),
Resolution(1024,768),
]
)
}
copied to clipboard
For every screen your app has define:
class ScreenFoo extends StatelesWidget{
@override
Widget build(BuildContext context){
return FullResponsiveScreen(
);
}
}
copied to clipboard
Design resolution sizes advice. #
When you design it's a good practice to take in consideration the most popular resolutions used as well as the IOS device sizes. For that we suggest you use one of the following sizes:
small: 390x844
medium: 1024x768
big: 1920x1080
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.