completed new plus popup when feature unavailable :3
This commit is contained in:
@@ -52,14 +52,19 @@ Future<T?> showRoundedModalBottomSheet<T>(
|
||||
BuildContext context, {
|
||||
required Widget child,
|
||||
bool rootNavigator = true,
|
||||
bool showHandle = true,
|
||||
}) async {
|
||||
return await showModalBottomSheet<T>(
|
||||
context: context,
|
||||
backgroundColor: const Color(0x00000000),
|
||||
elevation: 0,
|
||||
isDismissible: true,
|
||||
useRootNavigator: rootNavigator,
|
||||
builder: (context) => RoundedBottomSheet(child: child));
|
||||
context: context,
|
||||
backgroundColor: const Color(0x00000000),
|
||||
elevation: 0,
|
||||
isDismissible: true,
|
||||
useRootNavigator: rootNavigator,
|
||||
builder: (context) => RoundedBottomSheet(
|
||||
showHandle: false,
|
||||
child: child,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
PersistentBottomSheetController showRoundedBottomSheet(
|
||||
|
||||
@@ -8,21 +8,18 @@ extension Localization on String {
|
||||
"date": "Date",
|
||||
"description": "Description",
|
||||
"mode": "Type",
|
||||
"Nem írt": "Missed exam",
|
||||
},
|
||||
"hu_hu": {
|
||||
"value": "Érték",
|
||||
"date": "Írás ideje",
|
||||
"description": "Leírás",
|
||||
"mode": "Típus",
|
||||
"Nem írt": "Nem írta meg a dolgozatot"
|
||||
},
|
||||
"de_de": {
|
||||
"value": "Notenwert",
|
||||
"date": "Prüfungszeit",
|
||||
"description": "Bezeichnung",
|
||||
"mode": "Typ",
|
||||
"Nem írt": "Nicht geschrieben"
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user