Skip to content

Commit 94cd7b8

Browse files
committed
chore: v2.1.5
1 parent e7882a7 commit 94cd7b8

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

lib/common/preferences/preferences_wrapper.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class PreferencesWrapper {
2222
/// Ensures the utility is initialized.
2323
Future<void> ensureInitialized() async {
2424
_preferences = await SharedPreferences.getInstance();
25-
_secureStorage = const FlutterSecureStorage(aOptions: AndroidOptions(encryptedSharedPreferences: true));
25+
_secureStorage = const FlutterSecureStorage(aOptions: AndroidOptions());
2626
}
2727

2828
/// Sets the [preferenceKey] to the [value].

lib/pages/labels/labels_page.dart

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ class LabelsPage extends ConsumerWidget {
3939
switchInCurve: Curves.easeInOut,
4040
switchOutCurve: Curves.easeInOut,
4141
transitionBuilder: (child, animation) {
42-
return SizeTransition(axisAlignment: 1, sizeFactor: animation, child: child);
42+
return SizeTransition(
43+
alignment: AlignmentGeometry.topCenter,
44+
sizeFactor: animation,
45+
child: child,
46+
);
4347
},
4448
child: labelsFilters ? SizedBox(height: 38, child: LabelsFilters()) : null,
4549
);

0 commit comments

Comments
 (0)