insert pages
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user