insert pages

This commit is contained in:
Thinzar Win
2020-05-29 16:14:17 +06:30
parent bad27ba5c4
commit f4823d82f8
30 changed files with 1431 additions and 959 deletions

View File

@@ -8,14 +8,17 @@ Widget labeledText(BuildContext context, String text, String label,
{bool number = false}) {
final w = Container(
padding: EdgeInsets.only(top: 3, left: 10, bottom: 3, right: 10),
child: Wrap(
alignment: number ? WrapAlignment.spaceBetween : WrapAlignment.start,
// scrollDirection: Axis.horizontal,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
LocalText(context, label),
LocalText(
context,
label,
fontSize: 15,
),
// number ? Spacer() : Container(),
Container(
padding: EdgeInsets.only(left: 10),
// padding: EdgeInsets.only(left: 10),
// alignment: number ? Alignment.topRight : null,
child: Text(
text == null ? "" : text,