diff --git a/.github/actions/spelling/expect.txt b/.github/actions/spelling/expect.txt index 3a30c07c..a9237dd3 100644 --- a/.github/actions/spelling/expect.txt +++ b/.github/actions/spelling/expect.txt @@ -16,6 +16,7 @@ Arial asm attr autobuild +autofocus AVX backend bak @@ -63,12 +64,15 @@ cwd cygwin Dalmax DANDROID +dartpad datastore dbg +deduplicate DEFAULTTONEAREST deque dest devicelocale +Diagnosticable Dieharder DISCARDABLE dll @@ -104,6 +108,7 @@ FILEOS FILESUBTYPE FILEVERSION firstguess +flexbox fluentui FONTCHANGE FPKV @@ -327,6 +332,7 @@ responsponds Resync rng rotr +RRect rtl runloop sanmill @@ -419,6 +425,7 @@ TEXTINCLUDE timeb tmp TODO +toggleable tolower toolbar tooltip @@ -467,6 +474,7 @@ wmd Wnd WNDCLASS wparam +writeln wstring www XCRASH diff --git a/src/ui/flutter_app/lib/screens/personalization_settings/personalization_settings_page.dart b/src/ui/flutter_app/lib/screens/personalization_settings/personalization_settings_page.dart index cf0268a4..9086ea16 100644 --- a/src/ui/flutter_app/lib/screens/personalization_settings/personalization_settings_page.dart +++ b/src/ui/flutter_app/lib/screens/personalization_settings/personalization_settings_page.dart @@ -166,7 +166,7 @@ class PersonalizationSettingsPage extends StatelessWidget { onChanged: (val) => LocalDatabaseService.colorSettings = _colorSettings.copyWith(drawerColor: val), ), - // TODO: [Leptopdoa] add databse migration for drawerBackgroundColor + // TODO: [Leptopdoa] add database migration for drawerBackgroundColor _ColorSelectorListTile( title: S.of(context).drawerTextColor, value: LocalDatabaseService.colorSettings.drawerTextColor, diff --git a/src/ui/flutter_app/lib/shared/constants.dart b/src/ui/flutter_app/lib/shared/constants.dart index d006222a..ffa9ddc3 100644 --- a/src/ui/flutter_app/lib/shared/constants.dart +++ b/src/ui/flutter_app/lib/shared/constants.dart @@ -76,7 +76,7 @@ class Constants { } // TODO: [Leptopoda] we should only save the threshold and compute the bool right in place with MediaQuery.of(context) -// TODO: [Leptopoda] make use of flexboxes so we don't need those values +// TODO: [Leptopoda] make use of flexbox so we don't need those values bool get isSmallScreen => Constants.windowHeight <= 800; bool get isLargeScreen => !isSmallScreen;