improve paddings

This commit is contained in:
poka 2022-12-04 03:24:23 +01:00
parent 92fd504505
commit 9ed76b071e
4 changed files with 6 additions and 4 deletions

View File

@ -57,7 +57,7 @@ class ActivityScreen extends StatelessWidget with ChangeNotifier {
final duniterIndexer = Provider.of<DuniterIndexer>(context, listen: false);
if (indexerEndpoint == '') {
Column(children: <Widget>[
return Column(children: <Widget>[
const SizedBox(height: 50),
Text(
"noNetworkNoHistory".tr(),

View File

@ -27,6 +27,8 @@ class CertificationsScreen extends StatelessWidget {
)),
body: SafeArea(
child: Accordion(
paddingListTop: 10,
paddingListBottom: 10,
maxOpenSections: 1,
headerBackgroundColorOpened: orangeC,
scaleWhenAnimating: true,

View File

@ -108,7 +108,7 @@ class WalletViewScreen extends StatelessWidget {
body: SafeArea(
child: Column(children: <Widget>[
HeaderProfile(address: address, username: username),
SizedBox(height: isTall ? 10 : 0),
SizedBox(height: isTall ? 30 : 15),
Row(mainAxisAlignment: MainAxisAlignment.spaceAround, children: [
Column(children: <Widget>[
SizedBox(

View File

@ -123,14 +123,14 @@ class HeaderProfile extends StatelessWidget {
// ),
// ),
// ),
const SizedBox(height: 55),
// const SizedBox(height: 55),
]),
const Spacer(),
Column(children: <Widget>[
ClipOval(
child: defaultAvatar(avatarSize),
),
const SizedBox(height: 25),
// const SizedBox(height: 25),
]),
]),
),