commit
2d0674c12b
3 changed files with 4 additions and 5 deletions
|
@ -35,7 +35,9 @@ class _FreeSpacePageState extends State<FreeSpacePage> {
|
|||
);
|
||||
Logger("FreeSpacePage")
|
||||
.info("Space consumed: " + widget.status.size.toString());
|
||||
return _getWidget(widget.status);
|
||||
return SingleChildScrollView(
|
||||
child: _getWidget(widget.status),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _getWidget(BackupStatus status) {
|
||||
|
|
|
@ -127,7 +127,7 @@ class ChildSubscriptionWidget extends StatelessWidget {
|
|||
firstAction: 'No',
|
||||
secondAction: 'Yes',
|
||||
firstActionColor: Theme.of(context).buttonColor,
|
||||
secondActionColor: Colors.white,
|
||||
secondActionColor: Theme.of(context).colorScheme.onSurface,
|
||||
);
|
||||
if (choice != DialogUserChoice.secondChoice) {
|
||||
return;
|
||||
|
|
|
@ -198,9 +198,6 @@ class BackupSectionWidgetState extends State<BackupSectionWidget> {
|
|||
TextButton(
|
||||
child: Text(
|
||||
"Ok",
|
||||
style: TextStyle(
|
||||
color: Colors.white,
|
||||
),
|
||||
),
|
||||
onPressed: () {
|
||||
if (Platform.isIOS) {
|
||||
|
|
Loading…
Add table
Reference in a new issue