Set application icons
This commit is contained in:
@ -34,12 +34,14 @@ class BaseAuthPage extends StatelessWidget {
|
||||
: Container(),
|
||||
],
|
||||
),
|
||||
body: SeparatedColumn(
|
||||
padding: EdgeInsets.all(context.gutter),
|
||||
separatorBuilder: () => const Gutter(),
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: children,
|
||||
body: SingleChildScrollView(
|
||||
child: SeparatedColumn(
|
||||
padding: EdgeInsets.all(context.gutter),
|
||||
separatorBuilder: () => const Gutter(),
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: children,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
@ -54,7 +54,13 @@ class _LoginChoice extends StatelessWidget {
|
||||
EdgeInsetsGeometry.symmetric(vertical: 20.0, horizontal: 30.0),
|
||||
),
|
||||
),
|
||||
child: Row(children: [Icon(icon, size: 25.0), Gutter(), Text(label)]),
|
||||
child: Row(
|
||||
children: [
|
||||
Icon(icon, size: 25.0),
|
||||
Gutter(),
|
||||
Flexible(child: Text(label)),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user