Skip to content
Snippets Groups Projects
Commit b24211e4 authored by poka's avatar poka
Browse files

Text formatting

parent eceb2e32
No related branches found
No related tags found
No related merge requests found
Pipeline #14145 waiting for manual action
...@@ -397,10 +397,13 @@ class HistoryScreen extends StatelessWidget with ChangeNotifier { ...@@ -397,10 +397,13 @@ class HistoryScreen extends StatelessWidget with ChangeNotifier {
}, },
child: Padding( child: Padding(
padding: const EdgeInsets.all(12), padding: const EdgeInsets.all(12),
child: Text("PAYER", child: Text(
style: TextStyle( "PAYER",
fontSize: 25, color: Colors.grey[850]))), style: TextStyle(fontSize: 25, color: Colors.grey[850]),
)) ),
),
),
)
], ],
), ),
), ),
......
...@@ -36,7 +36,6 @@ class UnlockingWallet extends StatelessWidget { ...@@ -36,7 +36,6 @@ class UnlockingWallet extends StatelessWidget {
Provider.of<WalletOptionsProvider>(context); Provider.of<WalletOptionsProvider>(context);
int _pinLenght; int _pinLenght;
ChestData currentChest = chestBox.get(configBox.get('currentChest')); ChestData currentChest = chestBox.get(configBox.get('currentChest'));
if (currentChest.isCesium) { if (currentChest.isCesium) {
...@@ -53,7 +52,7 @@ class UnlockingWallet extends StatelessWidget { ...@@ -53,7 +52,7 @@ class UnlockingWallet extends StatelessWidget {
child: Column(children: <Widget>[ child: Column(children: <Widget>[
Expanded( Expanded(
child: Column(children: <Widget>[ child: Column(children: <Widget>[
SizedBox(height: isTall ? 80 : 20), SizedBox(height: isTall ? 100 : 20),
Row(mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ Row(mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[
currentChest.imageFile == null currentChest.imageFile == null
? Image.asset( ? Image.asset(
......
...@@ -168,7 +168,9 @@ Widget sentanceArray(BuildContext context) { ...@@ -168,7 +168,9 @@ Widget sentanceArray(BuildContext context) {
arrayCell(formatedArray.data[10]), arrayCell(formatedArray.data[10]),
arrayCell(formatedArray.data[11]), arrayCell(formatedArray.data[11]),
]), ]),
]))); ]),
),
);
}); });
} }
...@@ -176,12 +178,18 @@ Widget arrayCell(dataWord) { ...@@ -176,12 +178,18 @@ Widget arrayCell(dataWord) {
return SizedBox( return SizedBox(
width: 102, width: 102,
child: Column(children: <Widget>[ child: Column(children: <Widget>[
Text(dataWord.split(':')[0], style: const TextStyle(fontSize: 14)), Text(
dataWord.split(':')[0],
style: const TextStyle(fontSize: 14),
),
const SizedBox(height: 2), const SizedBox(height: 2),
Text(dataWord.split(':')[1], Text(
dataWord.split(':')[1],
key: Key('word${dataWord.split(':')[0]}'), key: Key('word${dataWord.split(':')[0]}'),
style: const TextStyle(fontSize: 19, color: Colors.black)), style: const TextStyle(fontSize: 19, color: Colors.black),
])); ),
]),
);
} }
// ignore: must_be_immutable // ignore: must_be_immutable
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment