adaptive_screen_flutter

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

adaptive screen flutter

Hi Flutter dev, this package helps you to build UI with adaptive screen based on mobile, tablet and web.
Example #

Getting started #
You can customize the brakepoint of the screen width or just use the default of
this package for the screen width.
Usage #
The defaut brake point of tablet is 600.0 and 950 for the web.
OR
If you want to custom the brake point,
you can set init brake point in main method like this
void main(){
// here for setting mobile to tablet brakepoint
ScreenInit.setTabletBrakePoint(650.0);
// here for setting tablet to web brakepoint
ScreenInit.setWebBrakePoint(1000.0);
runApp(MyApp());
}
copied to clipboard
Wrap your widget with AdaptiveScreen()
AdaptiveScreen(
mobile: Center(
child: Text('Ini Mobile')
),
tablet: Row(
children:[
Text('Ini tablet'),
Container()
// ...
]
),
web: Column(
children:[
Text('Ini web'),
SizedBox(height:30),
// ...
]
)
)
copied to clipboard
LICENSE #
MIT License

Copyright (c) 2022 Ferdian Gunawan

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
copied to clipboard
Additional Information #
Please don't hesitate to contribute to this package.
Shout out to Abdelouahed Medjoudja that has inspired me for the default width screen 600 and 950.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.