setSizeWidget method
Widget
setSizeWidget(
- BuildContext context,
- GlobalKey<
State< key,StatefulWidget> > - String text,
- double margin,
- double fontSize,
Implementation
Widget setSizeWidget(
BuildContext context,
GlobalKey key,
String text,
double margin,
double fontSize,
) {
return SafeArea(
child: Container(
alignment: Alignment.topLeft,
width: MediaQuery.of(context).size.width - margin,
child: Text(
key: key,
text,
style: TextStyle(
fontSize: fontSize,
),
),
),
);
}