Skip to content

Commit

Permalink
Merge branch 'master' into feature/chains_improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
n13 committed Jul 3, 2024
2 parents 87820cb + ac72252 commit ffaa91e
Show file tree
Hide file tree
Showing 164 changed files with 786 additions and 588 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ cd seeds_light_wallet
flutter pub get
flutter run
```
## Code Rules
- Set line length to 120 in your editor
- Most other rules are definied in the flutter linter file.

## Build

Expand Down
5 changes: 0 additions & 5 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ linter:
always_put_control_body_on_new_line: true
use_string_buffers: false
# - always_put_required_named_parameters_first # we prefer having parameters in the same order as fields https://github.com/flutter/flutter/issues/10219
always_require_non_null_named_parameters: true
always_specify_types: false
always_use_package_imports: true
annotate_overrides: true
Expand Down Expand Up @@ -97,13 +96,10 @@ linter:
hash_and_equals: true
implementation_imports: true
# - invariant_booleans # too many false positives: https://github.com/dart-lang/linter/issues/811
iterable_contains_unrelated_type: true
# - join_return_with_assignment # not required by flutter style
leading_newlines_in_multiline_strings: true
library_names: true
library_prefixes: true
#- lines_longer_than_80_chars # not required by flutter style
list_remove_unrelated_type: true
# - literal_only_boolean_expressions # too many false positives: https://github.com/dart-lang/sdk/issues/34181
missing_whitespace_between_adjacent_strings: true
no_adjacent_strings_in_list: true
Expand Down Expand Up @@ -134,7 +130,6 @@ linter:
prefer_constructors_over_static_methods: true
prefer_contains: true
# - prefer_double_quotes # opposite of prefer_single_quotes
prefer_equal_for_default_values: true
# - prefer_expression_function_bodies # conflicts with https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#consider-using--for-short-functions-and-methods
prefer_final_fields: true
prefer_final_in_for_each: true
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if (localPropertiesFile.exists()) {

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
throw GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
Expand Down
154 changes: 76 additions & 78 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

/* Begin PBXBuildFile section */
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
1BE62388CD53A0DD11BE7DC7 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2CE283C5EBBEE4772868880D /* Pods_Runner.framework */; };
24BE020026BD3995004DF703 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 24BE01FF26BD3995004DF703 /* [email protected] */; };
24BE020226BD39D6004DF703 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 24BE020126BD39D6004DF703 /* [email protected] */; };
24BE020426BD39EA004DF703 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 24BE020326BD39EA004DF703 /* [email protected] */; };
24CCE17F23B4AC99001456E4 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 24CCE17E23B4AC99001456E4 /* GoogleService-Info.plist */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
6F6A9E5F5A69C0DDAF6B9022 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0FE0612AFD9402558124097 /* Pods_Runner.framework */; };
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
Expand All @@ -34,6 +34,7 @@
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
0B2E7E85732146DFDDB1319E /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
243D697823B4C3DB00BD14A7 /* SEEDS Wallet.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "SEEDS Wallet.entitlements"; sourceTree = "<group>"; };
Expand All @@ -42,7 +43,7 @@
24BE020326BD39EA004DF703 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
24C2636523B472A1007B4494 /* SEEDS WalletProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "SEEDS WalletProfile.entitlements"; sourceTree = "<group>"; };
24CCE17E23B4AC99001456E4 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
2CE283C5EBBEE4772868880D /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2F16F71436E0D5F7B7C65FD0 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
Expand All @@ -54,37 +55,28 @@
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
B11A4EAE3A9A893782AFCAEC /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
B6186DBE48D89C12AEF20DDB /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
C20B7DCC52A741F5E790E171 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
D0FE0612AFD9402558124097 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DC96C70AEC2A6CE276389E10 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
97C146EB1CF9000F007C117D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
1BE62388CD53A0DD11BE7DC7 /* Pods_Runner.framework in Frameworks */,
6F6A9E5F5A69C0DDAF6B9022 /* Pods_Runner.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
5FCA6F6250AFD43006525538 /* Frameworks */ = {
isa = PBXGroup;
children = (
2CE283C5EBBEE4772868880D /* Pods_Runner.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
9596D6FAAAEB03B8CB2392FB /* Pods */ = {
isa = PBXGroup;
children = (
B11A4EAE3A9A893782AFCAEC /* Pods-Runner.debug.xcconfig */,
B6186DBE48D89C12AEF20DDB /* Pods-Runner.release.xcconfig */,
C20B7DCC52A741F5E790E171 /* Pods-Runner.profile.xcconfig */,
DC96C70AEC2A6CE276389E10 /* Pods-Runner.debug.xcconfig */,
2F16F71436E0D5F7B7C65FD0 /* Pods-Runner.release.xcconfig */,
0B2E7E85732146DFDDB1319E /* Pods-Runner.profile.xcconfig */,
);
path = Pods;
sourceTree = "<group>";
Expand All @@ -107,7 +99,7 @@
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
9596D6FAAAEB03B8CB2392FB /* Pods */,
5FCA6F6250AFD43006525538 /* Frameworks */,
E64266E9FB82FA7DC2EDB89B /* Frameworks */,
);
sourceTree = "<group>";
};
Expand Down Expand Up @@ -148,22 +140,30 @@
name = "Supporting Files";
sourceTree = "<group>";
};
E64266E9FB82FA7DC2EDB89B /* Frameworks */ = {
isa = PBXGroup;
children = (
D0FE0612AFD9402558124097 /* Pods_Runner.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
97C146ED1CF9000F007C117D /* Runner */ = {
isa = PBXNativeTarget;
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
CEF6C8D3E481B30814A07F41 /* [CP] Check Pods Manifest.lock */,
F7B1A7BF35BB321F8CE33792 /* [CP] Check Pods Manifest.lock */,
9740EEB61CF901F6004384FC /* Run Script */,
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
FA988D8D15CE77DA976ACEBD /* [CP] Embed Pods Frameworks */,
FC2EC1C77FA5FA671C3334D7 /* [CP] Copy Pods Resources */,
008C5F8FC019C1E000A59341 /* [CP] Embed Pods Frameworks */,
B663730435A7BA1588D02121 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
Expand Down Expand Up @@ -228,60 +228,7 @@
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Run Script";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
CEF6C8D3E481B30814A07F41 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
);
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
FA988D8D15CE77DA976ACEBD /* [CP] Embed Pods Frameworks */ = {
008C5F8FC019C1E000A59341 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
Expand Down Expand Up @@ -321,7 +268,6 @@
"${BUILT_PRODUCTS_DIR}/in_app_review/in_app_review.framework",
"${BUILT_PRODUCTS_DIR}/leveldb-library/leveldb.framework",
"${BUILT_PRODUCTS_DIR}/local_auth_darwin/local_auth_darwin.framework",
"${BUILT_PRODUCTS_DIR}/local_auth_ios/local_auth_ios.framework",
"${BUILT_PRODUCTS_DIR}/nanopb/nanopb.framework",
"${BUILT_PRODUCTS_DIR}/package_info_plus/package_info_plus.framework",
"${BUILT_PRODUCTS_DIR}/path_provider_foundation/path_provider_foundation.framework",
Expand Down Expand Up @@ -368,7 +314,6 @@
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/in_app_review.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/leveldb.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/local_auth_darwin.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/local_auth_ios.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/nanopb.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/package_info_plus.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/path_provider_foundation.framework",
Expand All @@ -385,7 +330,38 @@
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
FC2EC1C77FA5FA671C3334D7 /* [CP] Copy Pods Resources */ = {
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Run Script";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
B663730435A7BA1588D02121 /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
Expand All @@ -407,6 +383,28 @@
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n";
showEnvVarsInLog = 0;
};
F7B1A7BF35BB321F8CE33792 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
);
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
Expand Down
2 changes: 1 addition & 1 deletion lib/components/custom_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class CustomDialog extends StatelessWidget {
child: CircleAvatar(
backgroundColor: Colors.transparent,
radius: _avatarRadius,
child: Container(
child: DecoratedBox(
decoration: BoxDecoration(
color: AppColors.white,
shape: BoxShape.circle,
Expand Down
4 changes: 2 additions & 2 deletions lib/components/error_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ class ErrorDialog extends StatelessWidget {
children: [
Text(
title,
style: Theme.of(context).textTheme.headline6,
style: Theme.of(context).textTheme.titleLarge,
overflow: TextOverflow.ellipsis,
),
const SizedBox(height: 20.0),
Text(details, style: Theme.of(context).textTheme.subtitle2),
Text(details, style: Theme.of(context).textTheme.titleSmall),
],
);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/components/full_page_error_indicator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class FullPageErrorIndicator extends StatelessWidget {
child: Center(
child: Text(
errorMessage ?? GlobalError.unknown.localizedDescription(context),
style: Theme.of(context).textTheme.subtitle2!.copyWith(color: AppColors.red1),
style: Theme.of(context).textTheme.titleSmall!.copyWith(color: AppColors.red1),
),
),
),
Expand Down
4 changes: 2 additions & 2 deletions lib/components/member_info_row.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ class MemberInfoRow extends StatelessWidget {
child: Text(
member.nickname.isNotEmpty ? member.nickname : member.account,
overflow: TextOverflow.ellipsis,
style: Theme.of(context).textTheme.button,
style: Theme.of(context).textTheme.labelLarge,
),
),
Text(
member.statusString,
style: Theme.of(context).textTheme.button,
style: Theme.of(context).textTheme.labelLarge,
),
],
),
Expand Down
4 changes: 2 additions & 2 deletions lib/components/search_result_row.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ class SearchResultRow extends StatelessWidget {
child: Text(
member.nickname.isNotEmpty ? member.nickname : member.account,
overflow: TextOverflow.ellipsis,
style: Theme.of(context).textTheme.button,
style: Theme.of(context).textTheme.labelLarge,
),
),
const SizedBox(width: 10),
Text(
member.statusString,
style: Theme.of(context).textTheme.button,
style: Theme.of(context).textTheme.labelLarge,
),
],
),
Expand Down
Loading

0 comments on commit ffaa91e

Please sign in to comment.