Formatted files using dart format
This commit is contained in:
parent
1975d66419
commit
b320d51fa1
28 changed files with 2466 additions and 2422 deletions
|
@ -64,8 +64,7 @@ class OutbagServer {
|
|||
path: prefs.getString('server-path')!,
|
||||
port: prefs.getInt('server-port')!,
|
||||
tag: prefs.getString('server-tag')!,
|
||||
host: prefs.getString('server-host')!
|
||||
);
|
||||
host: prefs.getString('server-host')!);
|
||||
}
|
||||
|
||||
static Future<void> removeDisk() async {
|
||||
|
|
|
@ -322,11 +322,17 @@ class RoomMember {
|
|||
final bool isInvitePending;
|
||||
|
||||
const RoomMember(
|
||||
{required this.id, required this.serverTag, required this.isAdmin, this.isInvitePending=false});
|
||||
{required this.id,
|
||||
required this.serverTag,
|
||||
required this.isAdmin,
|
||||
this.isInvitePending = false});
|
||||
|
||||
factory RoomMember.fromJSON(dynamic json) {
|
||||
return RoomMember(
|
||||
id: json['name'], serverTag: json['server'], isAdmin: json['admin'], isInvitePending: json['confirmed']);
|
||||
id: json['name'],
|
||||
serverTag: json['server'],
|
||||
isAdmin: json['admin'],
|
||||
isInvitePending: json['confirmed']);
|
||||
}
|
||||
|
||||
String get humanReadableName {
|
||||
|
|
|
@ -9,7 +9,8 @@ class CategoryChip extends StatelessWidget {
|
|||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return ActionChip(
|
||||
avatar: Icon(Icons.square_rounded, color: category?.color ?? RoomCategory.other(context).color),
|
||||
avatar: Icon(Icons.square_rounded,
|
||||
color: category?.color ?? RoomCategory.other(context).color),
|
||||
label: Text(category?.name ?? RoomCategory.other(context).name),
|
||||
);
|
||||
}
|
||||
|
|
|
@ -25,17 +25,14 @@ class CategoryPicker extends StatelessWidget {
|
|||
return Padding(
|
||||
padding: const EdgeInsets.all(8),
|
||||
child: DropdownButtonFormField<int?>(
|
||||
hint: hint==null?null:Text(hint!),
|
||||
hint: hint == null ? null : Text(hint!),
|
||||
decoration: InputDecoration(
|
||||
label: label==null?null:Text(label!),
|
||||
label: label == null ? null : Text(label!),
|
||||
border: const OutlineInputBorder(),
|
||||
prefixIcon: const Icon(Icons.category)
|
||||
),
|
||||
prefixIcon: const Icon(Icons.category)),
|
||||
value: selected,
|
||||
items: [
|
||||
...categories,
|
||||
RoomCategory.other(context)
|
||||
].map((category)=>DropdownMenuItem<int?>(
|
||||
items: [...categories, RoomCategory.other(context)]
|
||||
.map((category) => DropdownMenuItem<int?>(
|
||||
value: category.id,
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
|
@ -43,16 +40,17 @@ class CategoryPicker extends StatelessWidget {
|
|||
children: [
|
||||
Text(category.name),
|
||||
Icon(Icons.square_rounded,
|
||||
color:category.color,
|
||||
size: 32)
|
||||
]
|
||||
),
|
||||
)).toList(),
|
||||
onChanged: enabled?(cid) {
|
||||
color: category.color, size: 32)
|
||||
]),
|
||||
))
|
||||
.toList(),
|
||||
onChanged: enabled
|
||||
? (cid) {
|
||||
if (onSelect != null) {
|
||||
onSelect!(cid);
|
||||
}
|
||||
}:null,
|
||||
}
|
||||
: null,
|
||||
));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,14 +6,10 @@ class LabeledDivider extends StatelessWidget {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Row(
|
||||
children: [
|
||||
return Row(children: [
|
||||
const Expanded(child: Divider()),
|
||||
Padding(
|
||||
padding: const EdgeInsets.all(8),
|
||||
child: Text(label)),
|
||||
Padding(padding: const EdgeInsets.all(8), child: Text(label)),
|
||||
const Expanded(child: Divider()),
|
||||
]
|
||||
);
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -39,12 +39,7 @@ class RoomIconPicker extends StatelessWidget {
|
|||
if (onSelect != null) {
|
||||
onSelect!(icon);
|
||||
}
|
||||
}
|
||||
)
|
||||
);
|
||||
}).toList()
|
||||
)
|
||||
)
|
||||
);
|
||||
}));
|
||||
}).toList())));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,15 +25,16 @@ import 'package:outbag_app/screens/settings/main.dart';
|
|||
import 'package:provider/provider.dart';
|
||||
import 'package:flutter_localizations/flutter_localizations.dart';
|
||||
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
||||
|
||||
void main() {
|
||||
WidgetsFlutterBinding.ensureInitialized();
|
||||
runApp(const OutbagApp());
|
||||
}
|
||||
|
||||
final GlobalKey<NavigatorState> _rootNavigatorKey =
|
||||
GlobalKey<NavigatorState>(debugLabel: 'root');
|
||||
GlobalKey<NavigatorState>(debugLabel: 'root');
|
||||
final GlobalKey<NavigatorState> _userShellNavigatorKey =
|
||||
GlobalKey<NavigatorState>(debugLabel: 'user');
|
||||
GlobalKey<NavigatorState>(debugLabel: 'user');
|
||||
|
||||
class OutbagApp extends StatefulWidget {
|
||||
const OutbagApp({super.key});
|
||||
|
@ -195,7 +196,7 @@ class _OutbagAppState extends State {
|
|||
child: FutureProvider(
|
||||
initialData: null,
|
||||
child: child,
|
||||
create: (context)=>fetchInfo(context.read<User>()),
|
||||
create: (context) => fetchInfo(context.read<User>()),
|
||||
)),
|
||||
routes: <RouteBase>[
|
||||
GoRoute(
|
||||
|
@ -206,11 +207,9 @@ class _OutbagAppState extends State {
|
|||
GoRoute(
|
||||
name: 'settings',
|
||||
path: 'settings',
|
||||
builder: (context, state) =>
|
||||
SettingsPage(
|
||||
builder: (context, state) => SettingsPage(
|
||||
refreshTheme: loadTheme,
|
||||
refreshUser: loadUser
|
||||
)),
|
||||
refreshUser: loadUser)),
|
||||
GoRoute(
|
||||
path: 'join-room',
|
||||
name: 'add-room',
|
||||
|
@ -220,7 +219,8 @@ class _OutbagAppState extends State {
|
|||
GoRoute(
|
||||
path: 'new',
|
||||
name: 'new-room',
|
||||
builder: (context, state) => NewRoomPage()),
|
||||
builder: (context, state) =>
|
||||
NewRoomPage()),
|
||||
]),
|
||||
GoRoute(
|
||||
name: 'room',
|
||||
|
@ -249,58 +249,77 @@ class _OutbagAppState extends State {
|
|||
EditRoomPermissionSetPage(
|
||||
state.params['server'] ?? '',
|
||||
state.params['id'] ?? '')),
|
||||
|
||||
GoRoute(
|
||||
name: 'new-category',
|
||||
path: 'new-category',
|
||||
builder: (context, state)=>EditCategoryPage(
|
||||
builder: (context, state) =>
|
||||
EditCategoryPage(
|
||||
state.params['server'] ?? '',
|
||||
state.params['id'] ?? '')),
|
||||
GoRoute(
|
||||
name: 'edit-category',
|
||||
path: 'edit-category/:category',
|
||||
builder: (context, state)=>EditCategoryPage(
|
||||
builder: (context, state) =>
|
||||
EditCategoryPage(
|
||||
state.params['server'] ?? '',
|
||||
state.params['id'] ?? '',
|
||||
id: int.tryParse(state.params['category'] ?? ''))),
|
||||
|
||||
id: int.tryParse(
|
||||
state.params['category'] ??
|
||||
''))),
|
||||
GoRoute(
|
||||
name: 'new-product',
|
||||
path: 'new-product',
|
||||
builder: (context, state)=>EditProductPage(
|
||||
server: state.params['server'] ?? '',
|
||||
room: state.params['id'] ?? '',)),
|
||||
builder: (context, state) =>
|
||||
EditProductPage(
|
||||
server:
|
||||
state.params['server'] ?? '',
|
||||
room: state.params['id'] ?? '',
|
||||
)),
|
||||
GoRoute(
|
||||
name: 'view-product',
|
||||
path: 'p/:product',
|
||||
builder: (context, state)=>ViewProductPage(
|
||||
server: state.params['server'] ?? '',
|
||||
builder: (context, state) =>
|
||||
ViewProductPage(
|
||||
server:
|
||||
state.params['server'] ?? '',
|
||||
room: state.params['id'] ?? '',
|
||||
product: int.tryParse(state.params['product'] ?? '') ?? 0),
|
||||
product: int.tryParse(
|
||||
state.params['product'] ??
|
||||
'') ??
|
||||
0),
|
||||
routes: [
|
||||
GoRoute(
|
||||
name: 'edit-product',
|
||||
path: 'edit',
|
||||
builder: (context, state)=>EditProductPage(
|
||||
server: state.params['server'] ?? '',
|
||||
room: state.params['id'] ?? '',
|
||||
product: int.tryParse(state.params['product'] ?? ''))),
|
||||
]
|
||||
),
|
||||
|
||||
builder: (context, state) =>
|
||||
EditProductPage(
|
||||
server: state
|
||||
.params['server'] ??
|
||||
'',
|
||||
room: state.params['id'] ??
|
||||
'',
|
||||
product: int.tryParse(
|
||||
state.params[
|
||||
'product'] ??
|
||||
''))),
|
||||
]),
|
||||
GoRoute(
|
||||
name: 'new-item',
|
||||
path: 'new-item',
|
||||
builder: (context, state)=>EditItemPage(
|
||||
server: state.params['server'] ?? '',
|
||||
room: state.params['id'] ?? '',)),
|
||||
builder: (context, state) => EditItemPage(
|
||||
server:
|
||||
state.params['server'] ?? '',
|
||||
room: state.params['id'] ?? '',
|
||||
)),
|
||||
GoRoute(
|
||||
name: 'edit-item',
|
||||
path: 'i/:item',
|
||||
builder: (context, state)=>EditItemPage(
|
||||
builder: (context, state) => EditItemPage(
|
||||
server: state.params['server'] ?? '',
|
||||
room: state.params['id'] ?? '',
|
||||
item: int.tryParse(state.params['item'] ?? '') ?? 0),
|
||||
item: int.tryParse(
|
||||
state.params['item'] ?? '') ??
|
||||
0),
|
||||
)
|
||||
])
|
||||
]),
|
||||
|
|
|
@ -104,7 +104,8 @@ class _HomePageState extends State<HomePage> {
|
|||
? [
|
||||
MenuItemButton(
|
||||
leadingIcon: const Icon(Icons.dns),
|
||||
child: Text(AppLocalizations.of(context)!.serverDashboard),
|
||||
child: Text(
|
||||
AppLocalizations.of(context)!.serverDashboard),
|
||||
onPressed: () {
|
||||
// show settings screen
|
||||
context.goNamed('dash');
|
||||
|
|
1
lib/screens/room/about/invite.dart
Normal file
1
lib/screens/room/about/invite.dart
Normal file
|
@ -0,0 +1 @@
|
|||
|
1
lib/screens/room/about/ota.dart
Normal file
1
lib/screens/room/about/ota.dart
Normal file
|
@ -0,0 +1 @@
|
|||
|
|
@ -147,7 +147,8 @@ class _JoinRoomPageState extends State {
|
|||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: [
|
||||
Text(AppLocalizations.of(context)!.noNewRoomsFound, style: textTheme.titleLarge),
|
||||
Text(AppLocalizations.of(context)!.noNewRoomsFound,
|
||||
style: textTheme.titleLarge),
|
||||
],
|
||||
))
|
||||
: ListView.builder(
|
||||
|
@ -202,8 +203,8 @@ class _JoinRoomPageState extends State {
|
|||
MainAxisAlignment.center,
|
||||
children: [
|
||||
Icon(room.visibility?.icon),
|
||||
Text((room
|
||||
.visibility?.text(context))!),
|
||||
Text((room.visibility
|
||||
?.text(context))!),
|
||||
]),
|
||||
])),
|
||||
// action buttons
|
||||
|
@ -218,7 +219,10 @@ class _JoinRoomPageState extends State {
|
|||
child: ElevatedButton.icon(
|
||||
icon:
|
||||
const Icon(Icons.close),
|
||||
label: Text(AppLocalizations.of(context)!.cancel),
|
||||
label: Text(
|
||||
AppLocalizations.of(
|
||||
context)!
|
||||
.cancel),
|
||||
onPressed: () {
|
||||
// close sheet
|
||||
Navigator.pop(context);
|
||||
|
@ -231,7 +235,10 @@ class _JoinRoomPageState extends State {
|
|||
child: FilledButton.icon(
|
||||
icon:
|
||||
const Icon(Icons.check),
|
||||
label: Text(AppLocalizations.of(context)!.joinRoom),
|
||||
label: Text(
|
||||
AppLocalizations.of(
|
||||
context)!
|
||||
.joinRoom),
|
||||
onPressed: () async {
|
||||
final scaffMgr =
|
||||
ScaffoldMessenger.of(
|
||||
|
|
|
@ -76,10 +76,7 @@ class _RoomPageState extends State<RoomPage> {
|
|||
void initState() {
|
||||
super.initState();
|
||||
|
||||
room = Room(
|
||||
id: widget.tag,
|
||||
serverTag: widget.server
|
||||
);
|
||||
room = Room(id: widget.tag, serverTag: widget.server);
|
||||
|
||||
_ctr.addListener(() {
|
||||
setState(() {
|
||||
|
|
|
@ -282,7 +282,6 @@ class _NewRoomPageState extends State<NewRoomPage> {
|
|||
await clone.toDisk();
|
||||
nav.pop();
|
||||
});
|
||||
|
||||
} else {
|
||||
// new room specific tests & request
|
||||
|
||||
|
@ -325,7 +324,6 @@ class _NewRoomPageState extends State<NewRoomPage> {
|
|||
router.pushReplacementNamed('home');
|
||||
});
|
||||
}
|
||||
|
||||
},
|
||||
label: Text(isEditPage()
|
||||
? AppLocalizations.of(context)!.editRoomMetadataShort
|
||||
|
|
|
@ -91,14 +91,20 @@ class _AboutRoomPageState extends State<AboutRoomPage> {
|
|||
showDialog(
|
||||
context: context,
|
||||
builder: (ctx) => AlertDialog(
|
||||
title: Text(AppLocalizations.of(context)!.changeRoomVisibilityTitle),
|
||||
content: Text(AppLocalizations.of(context)!.changeRoomVisibilitySubtitle(vis.text(context))),
|
||||
title: Text(AppLocalizations.of(context)!
|
||||
.changeRoomVisibilityTitle),
|
||||
content: Text(
|
||||
AppLocalizations.of(context)!
|
||||
.changeRoomVisibilitySubtitle(
|
||||
vis.text(context))),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () {
|
||||
context.pop();
|
||||
},
|
||||
child: Text(AppLocalizations.of(context)!.cancel),
|
||||
child: Text(
|
||||
AppLocalizations.of(context)!
|
||||
.cancel),
|
||||
),
|
||||
FilledButton(
|
||||
onPressed: () async {
|
||||
|
@ -127,7 +133,8 @@ class _AboutRoomPageState extends State<AboutRoomPage> {
|
|||
nav.pop();
|
||||
});
|
||||
},
|
||||
child: Text(AppLocalizations.of(context)!.ok),
|
||||
child: Text(
|
||||
AppLocalizations.of(context)!.ok),
|
||||
)
|
||||
],
|
||||
));
|
||||
|
@ -155,8 +162,10 @@ class _AboutRoomPageState extends State<AboutRoomPage> {
|
|||
? [
|
||||
ListTile(
|
||||
trailing: const Icon(Icons.chevron_right),
|
||||
title: Text(AppLocalizations.of(context)!.editRoomMetadata),
|
||||
subtitle: Text(AppLocalizations.of(context)!.editRoomMetadataSubtitle),
|
||||
title: Text(
|
||||
AppLocalizations.of(context)!.editRoomMetadata),
|
||||
subtitle: Text(AppLocalizations.of(context)!
|
||||
.editRoomMetadataSubtitle),
|
||||
onTap: () {
|
||||
// show edit room screen
|
||||
context.goNamed('edit-room', params: {
|
||||
|
@ -171,7 +180,8 @@ class _AboutRoomPageState extends State<AboutRoomPage> {
|
|||
ListTile(
|
||||
trailing: const Icon(Icons.chevron_right),
|
||||
title: Text(AppLocalizations.of(context)!.showRoomMembers),
|
||||
subtitle: Text(AppLocalizations.of(context)!.showRoomMembersSubtitle),
|
||||
subtitle:
|
||||
Text(AppLocalizations.of(context)!.showRoomMembersSubtitle),
|
||||
onTap: () {
|
||||
// open member view screen
|
||||
context.goNamed('room-members', params: {
|
||||
|
@ -190,8 +200,10 @@ class _AboutRoomPageState extends State<AboutRoomPage> {
|
|||
? [
|
||||
ListTile(
|
||||
trailing: const Icon(Icons.chevron_right),
|
||||
title: Text(AppLocalizations.of(context)!.editRoomPermissions),
|
||||
subtitle: Text(AppLocalizations.of(context)!.editRoomPermissionsSubtitle),
|
||||
title: Text(
|
||||
AppLocalizations.of(context)!.editRoomPermissions),
|
||||
subtitle: Text(AppLocalizations.of(context)!
|
||||
.editRoomPermissionsSubtitle),
|
||||
onTap: () {
|
||||
// show checkbox screen
|
||||
context.goNamed('room-permissions', params: {
|
||||
|
@ -210,8 +222,10 @@ class _AboutRoomPageState extends State<AboutRoomPage> {
|
|||
? [
|
||||
ListTile(
|
||||
trailing: const Icon(Icons.chevron_right),
|
||||
title: Text(AppLocalizations.of(context)!.manageRoomOTA),
|
||||
subtitle: Text(AppLocalizations.of(context)!.manageRoomOTASubtitle),
|
||||
title:
|
||||
Text(AppLocalizations.of(context)!.manageRoomOTA),
|
||||
subtitle: Text(AppLocalizations.of(context)!
|
||||
.manageRoomOTASubtitle),
|
||||
onTap: () {
|
||||
// show manage ota screen
|
||||
context.goNamed('room-ota', params: {
|
||||
|
@ -222,8 +236,10 @@ class _AboutRoomPageState extends State<AboutRoomPage> {
|
|||
),
|
||||
ListTile(
|
||||
trailing: const Icon(Icons.chevron_right),
|
||||
title: Text(AppLocalizations.of(context)!.manageRoomInvites),
|
||||
subtitle: Text(AppLocalizations.of(context)!.manageRoomInvitesSubtitle),
|
||||
title: Text(
|
||||
AppLocalizations.of(context)!.manageRoomInvites),
|
||||
subtitle: Text(AppLocalizations.of(context)!
|
||||
.manageRoomInvitesSubtitle),
|
||||
onTap: () {
|
||||
// show manage ota screen
|
||||
context.goNamed('room-invite', params: {
|
||||
|
@ -254,15 +270,18 @@ class _AboutRoomPageState extends State<AboutRoomPage> {
|
|||
? AppLocalizations.of(context)!.deleteRoom
|
||||
: AppLocalizations.of(context)!.leaveRoom),
|
||||
content: Text(((widget.info?.isOwner)!)
|
||||
? AppLocalizations.of(context)!.deleteRoomConfirm
|
||||
: AppLocalizations.of(context)!.leaveRoomConfirm),
|
||||
? AppLocalizations.of(context)!
|
||||
.deleteRoomConfirm
|
||||
: AppLocalizations.of(context)!
|
||||
.leaveRoomConfirm),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () {
|
||||
// close popup
|
||||
Navigator.of(ctx).pop();
|
||||
},
|
||||
child: Text(AppLocalizations.of(context)!.cancel),
|
||||
child: Text(
|
||||
AppLocalizations.of(context)!.cancel),
|
||||
),
|
||||
FilledButton(
|
||||
onPressed: () async {
|
||||
|
@ -300,8 +319,10 @@ class _AboutRoomPageState extends State<AboutRoomPage> {
|
|||
});
|
||||
},
|
||||
child: Text(((widget.info?.isOwner)!)
|
||||
? AppLocalizations.of(context)!.deleteRoomShort
|
||||
: AppLocalizations.of(context)!.leaveRoomShort),
|
||||
? AppLocalizations.of(context)!
|
||||
.deleteRoomShort
|
||||
: AppLocalizations.of(context)!
|
||||
.leaveRoomShort),
|
||||
)
|
||||
],
|
||||
));
|
||||
|
|
|
@ -233,9 +233,11 @@ class _RoomCategoriesPageState extends State<RoomCategoriesPage> {
|
|||
});
|
||||
},
|
||||
),
|
||||
floatingActionButton: (widget.info != null && ((widget.info?.isAdmin ?? false) ||
|
||||
floatingActionButton: (widget.info != null &&
|
||||
((widget.info?.isAdmin ?? false) ||
|
||||
(widget.info?.isOwner ?? false) ||
|
||||
((widget.info?.permissions)! & RoomPermission.editRoomContent !=
|
||||
((widget.info?.permissions)! &
|
||||
RoomPermission.editRoomContent !=
|
||||
0)))
|
||||
? FloatingActionButton.extended(
|
||||
icon: const Icon(Icons.add),
|
||||
|
|
|
@ -81,9 +81,11 @@ class _RoomProductsPageState extends State<RoomProductsPage> {
|
|||
);
|
||||
},
|
||||
),
|
||||
floatingActionButton: (widget.info != null && ((widget.info?.isAdmin ?? false) ||
|
||||
floatingActionButton: (widget.info != null &&
|
||||
((widget.info?.isAdmin ?? false) ||
|
||||
(widget.info?.isOwner ?? false) ||
|
||||
((widget.info?.permissions)! & RoomPermission.editRoomContent !=
|
||||
((widget.info?.permissions)! &
|
||||
RoomPermission.editRoomContent !=
|
||||
0)))
|
||||
? FloatingActionButton.extended(
|
||||
icon: const Icon(Icons.add),
|
||||
|
|
|
@ -145,7 +145,10 @@ class _ViewProductPageState extends State<ViewProductPage> {
|
|||
style: textTheme.titleMedium),
|
||||
Text(product?.ean ?? ''),
|
||||
CategoryChip(category: categories[product?.category]),
|
||||
Text(product!=null?Unit.fromId(product!.defaultUnit).display(context, product!.defaultValue):'')
|
||||
Text(product != null
|
||||
? Unit.fromId(product!.defaultUnit)
|
||||
.display(context, product!.defaultValue)
|
||||
: '')
|
||||
],
|
||||
))),
|
||||
|
||||
|
|
1
lib/screens/server/dashboard.dart
Normal file
1
lib/screens/server/dashboard.dart
Normal file
|
@ -0,0 +1 @@
|
|||
|
|
@ -37,7 +37,7 @@ class _ChangePasswordDialogState extends State<ChangePasswordDialog> {
|
|||
prefixIcon: const Icon(Icons.lock),
|
||||
labelText: AppLocalizations.of(context)!.inputOldPasswordLabel,
|
||||
hintText: AppLocalizations.of(context)!.inputOldPasswordHint,
|
||||
helperText:AppLocalizations.of(context)!.inputOldPasswordHelp,
|
||||
helperText: AppLocalizations.of(context)!.inputOldPasswordHelp,
|
||||
border: const OutlineInputBorder(),
|
||||
),
|
||||
),
|
||||
|
@ -52,7 +52,7 @@ class _ChangePasswordDialogState extends State<ChangePasswordDialog> {
|
|||
prefixIcon: const Icon(Icons.lock),
|
||||
labelText: AppLocalizations.of(context)!.inputNewPasswordLabel,
|
||||
hintText: AppLocalizations.of(context)!.inputNewPasswordHint,
|
||||
helperText:AppLocalizations.of(context)!.inputNewPasswordHelp,
|
||||
helperText: AppLocalizations.of(context)!.inputNewPasswordHelp,
|
||||
border: const OutlineInputBorder(),
|
||||
),
|
||||
),
|
||||
|
@ -65,9 +65,12 @@ class _ChangePasswordDialogState extends State<ChangePasswordDialog> {
|
|||
obscureText: true,
|
||||
decoration: InputDecoration(
|
||||
prefixIcon: const Icon(Icons.lock),
|
||||
labelText: AppLocalizations.of(context)!.inputNewPasswordRepeatLabel,
|
||||
hintText: AppLocalizations.of(context)!.inputNewPasswordRepeatHint,
|
||||
helperText:AppLocalizations.of(context)!.inputNewPasswordRepeatHelp,
|
||||
labelText:
|
||||
AppLocalizations.of(context)!.inputNewPasswordRepeatLabel,
|
||||
hintText:
|
||||
AppLocalizations.of(context)!.inputNewPasswordRepeatHint,
|
||||
helperText:
|
||||
AppLocalizations.of(context)!.inputNewPasswordRepeatHelp,
|
||||
border: const OutlineInputBorder(),
|
||||
),
|
||||
),
|
||||
|
@ -93,8 +96,7 @@ class _ChangePasswordDialogState extends State<ChangePasswordDialog> {
|
|||
if (_ctrNewPassword.text.length < 6) {
|
||||
// password has to be at least 6 characters long
|
||||
showSimpleSnackbar(scaffMgr,
|
||||
text: trans!.errorPasswordLength,
|
||||
action: trans.dismiss);
|
||||
text: trans!.errorPasswordLength, action: trans.dismiss);
|
||||
|
||||
_ctrNewPasswordRepeat.clear();
|
||||
return;
|
||||
|
|
|
@ -70,10 +70,8 @@ class _WelcomePageState extends State<WelcomePage> {
|
|||
AppLocalizations.of(context)!.welcomeTitle,
|
||||
style: textTheme.displaySmall,
|
||||
),
|
||||
Text(
|
||||
AppLocalizations.of(context)!.welcomeSubtitle,
|
||||
style: textTheme.bodyMedium
|
||||
)
|
||||
Text(AppLocalizations.of(context)!.welcomeSubtitle,
|
||||
style: textTheme.bodyMedium)
|
||||
],
|
||||
),
|
||||
Column(
|
||||
|
@ -88,8 +86,7 @@ class _WelcomePageState extends State<WelcomePage> {
|
|||
AppLocalizations.of(context)!.page2Title,
|
||||
style: textTheme.displaySmall,
|
||||
),
|
||||
Text(
|
||||
AppLocalizations.of(context)!.page2Subtitle,
|
||||
Text(AppLocalizations.of(context)!.page2Subtitle,
|
||||
style: textTheme.bodyMedium)
|
||||
],
|
||||
),
|
||||
|
@ -105,8 +102,7 @@ class _WelcomePageState extends State<WelcomePage> {
|
|||
AppLocalizations.of(context)!.page3Title,
|
||||
style: textTheme.displaySmall,
|
||||
),
|
||||
Text(
|
||||
AppLocalizations.of(context)!.page3Subtitle,
|
||||
Text(AppLocalizations.of(context)!.page3Subtitle,
|
||||
style: textTheme.bodyMedium)
|
||||
],
|
||||
),
|
||||
|
@ -122,8 +118,7 @@ class _WelcomePageState extends State<WelcomePage> {
|
|||
AppLocalizations.of(context)!.page4Title,
|
||||
style: textTheme.displaySmall,
|
||||
),
|
||||
Text(
|
||||
AppLocalizations.of(context)!.page4Subtitle,
|
||||
Text(AppLocalizations.of(context)!.page4Subtitle,
|
||||
style: textTheme.bodyMedium)
|
||||
],
|
||||
),
|
||||
|
@ -133,8 +128,7 @@ class _WelcomePageState extends State<WelcomePage> {
|
|||
onPressed: () {
|
||||
context.goNamed('signin');
|
||||
},
|
||||
child: Text(AppLocalizations.of(context)!.userHasAnAccount
|
||||
),
|
||||
child: Text(AppLocalizations.of(context)!.userHasAnAccount),
|
||||
)
|
||||
],
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue