Improve skip button

This commit is contained in:
Vishnu Mohandas 2021-05-31 05:20:42 +05:30
parent dfe637b2ac
commit afc39d8604

View file

@ -99,9 +99,19 @@ class _BackupFolderSelectionPageState extends State<BackupFolderSelectionPage> {
},
child: Padding(
padding: const EdgeInsets.fromLTRB(40, 8, 40, 20),
child: Text(
"skip",
style: TextStyle(color: Colors.white.withOpacity(0.8)),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.fast_forward,
color: Colors.white.withOpacity(0.7),
),
Padding(padding: EdgeInsets.all(2)),
Text(
"skip",
style: TextStyle(color: Colors.white.withOpacity(0.7)),
),
],
),
),
)