Last updated:
0 purchases
screendapt
Screendapt #
Screendapt provides responsive UI components like Texts, Icons, and Containers, all of which adapt automatically to predefined breakpoints, delivering a consistent experience across various screen sizes.
Usage #
Add the package to your dependencies.
Import the package in your project
import 'package:screendapt/screendapt.dart';
copied to clipboard
Use your preferred Screendapt Widget
Text
const SText(
'A scalable screendapt text',
maxFontSize: 30,
style: TextStyle(fontSize: 18),
),
copied to clipboard
Icon
const SIcon(
Icons.abc,
iconSize: 30,
maxIconSize: 40,
),
copied to clipboard
Container/Box
SContainer(
maxWidth: 800,
child: Container(
color: Colors.red,
height: 100,
),
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.