Adapted settings to tablet

This commit is contained in:
Juan Gilsanz Polo
2024-02-28 20:50:40 +01:00
parent d13e521481
commit 36b27839c7
9 changed files with 251 additions and 8 deletions

View File

@@ -2,8 +2,10 @@ import 'package:flutter/material.dart';
class CustomizationModel {
ScrollController? scrollController;
int? selectedScreen;
CustomizationModel({
this.scrollController,
this.selectedScreen,
});
}

View File

@@ -0,0 +1,7 @@
class SettingsModel {
int? selectedScreen;
SettingsModel({
this.selectedScreen,
});
}