loopWidget method
Widget
loopWidget(
- BuildContext context,
- List<
GlobalKey< keys,State< >StatefulWidget> > - List<
String> textList, - double margin,
- double fontSize,
Implementation
Widget loopWidget(
BuildContext context,
List<GlobalKey> keys,
List<String> textList,
double margin,
double fontSize,
) {
return SingleChildScrollView(
child: Column(
children: [
for (var i = 0; i < keys.length; i++) ...[
setSizeWidget(
context,
keys[i],
textList[i],
margin,
fontSize,
),
],
],
),
);
}