add padding to align with app
This commit is contained in:
parent
931968cb61
commit
a4da309164
2 changed files with 5 additions and 3 deletions
|
|
@ -39,8 +39,11 @@ class _ProfileUpdateState extends State<ProfileUpdate> {
|
|||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: const MyAppBar(barTitle: "Update Profile"),
|
||||
body: Center(
|
||||
child: _widgetOptions.elementAt(0),
|
||||
body: Padding(
|
||||
padding: const EdgeInsets.all(15.0),
|
||||
child: Center(
|
||||
child: _widgetOptions.elementAt(0),
|
||||
),
|
||||
),
|
||||
// bottomNavigationBar: GNav(
|
||||
// //hoverColor: Colors.lightBlueAccent,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue