Last updated:
0 purchases
monzim
TODO: A personal package helper for flutter.
Features #
1.0 Responsive Helper
2.0 Debug Helper
Getting started #
TODO: List prerequisites and provide or point to information on how to
start using the package.
Usage #
TODO: Include short and useful examples for package users. Add longer examples
to /example folder.
Responsive Widget #
Responsive(
child: Text('Mobile Screen'), //Required
tablet: Text('Tablet Screen'),
desktop: Text('Desktop Screen'),
large: Text('Large Screen'),
),
copied to clipboard
Adaptive Type #
AType(context,
defaultValue: 16,
scaleFactor: 3,
mobileScaleFactor: 5,
tabletScaleFactor: 7)
.value,
copied to clipboard
Responsive Type #
RType<Color>(
context,
defaultValue: Colors.red,
tablet: Colors.amber,
).value,
copied to clipboard
Row and Column #
RowColumn(
isRow: DeviceScreen.isTablet(context), //Get Screen Type
children: [],
),
copied to clipboard
Additional information #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.