mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-03 17:40:43 +00:00
Fix address book page
This commit is contained in:
parent
ee2074a328
commit
2ef3e5a797
1 changed files with 2 additions and 2 deletions
|
@ -110,7 +110,7 @@ class _ContactPageBodyState extends State<ContactPageBody> with SingleTickerProv
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Padding(
|
return Padding(
|
||||||
padding: const EdgeInsets.only(left: 24),
|
padding: const EdgeInsets.only(left: 24, right: 24),
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
Align(
|
Align(
|
||||||
|
@ -135,7 +135,7 @@ class _ContactPageBodyState extends State<ContactPageBody> with SingleTickerProv
|
||||||
indicatorColor: Theme.of(context).appBarTheme.titleTextStyle!.color,
|
indicatorColor: Theme.of(context).appBarTheme.titleTextStyle!.color,
|
||||||
indicatorPadding: EdgeInsets.zero,
|
indicatorPadding: EdgeInsets.zero,
|
||||||
labelPadding: EdgeInsets.only(right: 24),
|
labelPadding: EdgeInsets.only(right: 24),
|
||||||
tabAlignment: TabAlignment.center,
|
tabAlignment: TabAlignment.start,
|
||||||
dividerColor: Colors.transparent,
|
dividerColor: Colors.transparent,
|
||||||
padding: EdgeInsets.zero,
|
padding: EdgeInsets.zero,
|
||||||
tabs: [
|
tabs: [
|
||||||
|
|
Loading…
Reference in a new issue