Skip to content
This repository was archived by the owner on Apr 29, 2021. It is now read-only.

Commit 0101bae

Browse files
committed
[1.5.4] Fix accessibility level
1 parent 2d12f28 commit 0101bae

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Runtime/cupertino/app.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ public CupertinoApp(
2727
List<Locale> supportedLocales = null,
2828
bool showPerformanceOverlay = false
2929
) : base(key: key) {
30-
D.assert(routes != null);
31-
D.assert(navigatorObservers != null);
32-
D.assert(title != null);
33-
D.assert(showPerformanceOverlay != null);
30+
// D.assert(routes != null);
31+
// D.assert(navigatorObservers != null);
32+
// D.assert(title != null);
33+
// D.assert(showPerformanceOverlay != null);
3434

3535
supportedLocales = supportedLocales ?? new List<Locale> {new Locale("en", "US")};
3636
this.navigatorKey = navigatorKey;

Runtime/cupertino/theme.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ static class CupertinoThemeDataUtils {
99
public static readonly Color _kDefaultBarDarkBackgroundColor = new Color(0xB7212121);
1010
}
1111

12-
class CupertinoTheme : StatelessWidget {
12+
public class CupertinoTheme : StatelessWidget {
1313
public CupertinoTheme(
1414
CupertinoThemeData data,
1515
Widget child,

0 commit comments

Comments
 (0)