Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- return SingleChildScrollView(
- child: Column(
- children: [
- const SizedBox(height: 20),
- Container(
- margin: const EdgeInsets.all(8),
- child: Row(
- children: const [
- SizedBox(
- width: 20,
- ),
- Text(
- 'My Profile',
- style: TextStyle(fontSize: 25),
- ),
- Spacer(),
- LogoutButton(),
- ],
- ),
- ),
- Column(
- children: [
- FirstNameData(accountData: accountData),
- LastNameData(accountData: accountData),
- PhoneNumberData(accountData: accountData),
- HourlyRateData(accountData: accountData),
- // Spacer(), here i want to have a spacer but im getting an error and the whole widgets dissapear
- Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- editProfileButton(
- alertDialogForEditProfile, context),
- const SizedBox(
- width: 15,
- ),
- editPasswordButton(
- alertDialogForEditPassword,
- context,
- )
- ],
- )
- ],
- ),
- ],
- ),
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement