mirror of
https://github.com/salvadordeveloper/flutter-crypto-app.git
synced 2025-08-06 16:20:07 +08:00
Package settings_ui updated
This commit is contained in:
@ -26,9 +26,9 @@ EXTERNAL SOURCES:
|
|||||||
SPEC CHECKSUMS:
|
SPEC CHECKSUMS:
|
||||||
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
|
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
|
||||||
flutter_secure_storage: 7953c38a04c3fdbb00571bcd87d8e3b5ceb9daec
|
flutter_secure_storage: 7953c38a04c3fdbb00571bcd87d8e3b5ceb9daec
|
||||||
integration_test: 7db6d89f336f671dcbc7563ee27a5b08f6f8aee1
|
integration_test: a1e7d09bd98eca2fc37aefd79d4f41ad37bdbbe5
|
||||||
shared_preferences: af6bfa751691cdc24be3045c43ec037377ada40d
|
shared_preferences: af6bfa751691cdc24be3045c43ec037377ada40d
|
||||||
|
|
||||||
PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c
|
PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c
|
||||||
|
|
||||||
COCOAPODS: 1.10.1
|
COCOAPODS: 1.10.2
|
||||||
|
@ -155,7 +155,7 @@
|
|||||||
97C146E61CF9000F007C117D /* Project object */ = {
|
97C146E61CF9000F007C117D /* Project object */ = {
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
LastUpgradeCheck = 1020;
|
LastUpgradeCheck = 1300;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
TargetAttributes = {
|
TargetAttributes = {
|
||||||
97C146ED1CF9000F007C117D = {
|
97C146ED1CF9000F007C117D = {
|
||||||
@ -355,7 +355,7 @@
|
|||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||||
DEVELOPMENT_TEAM = M63FJ72T54;
|
DEVELOPMENT_TEAM = 96WDB89F88;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
FRAMEWORK_SEARCH_PATHS = (
|
FRAMEWORK_SEARCH_PATHS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
@ -492,7 +492,7 @@
|
|||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||||
DEVELOPMENT_TEAM = M63FJ72T54;
|
DEVELOPMENT_TEAM = 96WDB89F88;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
FRAMEWORK_SEARCH_PATHS = (
|
FRAMEWORK_SEARCH_PATHS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
@ -523,7 +523,7 @@
|
|||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||||
DEVELOPMENT_TEAM = M63FJ72T54;
|
DEVELOPMENT_TEAM = 96WDB89F88;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
FRAMEWORK_SEARCH_PATHS = (
|
FRAMEWORK_SEARCH_PATHS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1020"
|
LastUpgradeVersion = "1300"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
@ -35,11 +35,11 @@ class SettingScreen extends HookConsumerWidget {
|
|||||||
contentPadding: EdgeInsets.zero,
|
contentPadding: EdgeInsets.zero,
|
||||||
sections: [
|
sections: [
|
||||||
SettingsSection(
|
SettingsSection(
|
||||||
title: LocaleKeys.languageSection.tr(),
|
title: Text(LocaleKeys.languageSection.tr()),
|
||||||
tiles: [
|
tiles: [
|
||||||
SettingsTile(
|
SettingsTile(
|
||||||
title: LocaleKeys.language.tr(),
|
title: Text(LocaleKeys.language.tr()),
|
||||||
subtitle: details.currentLanguage.tr(),
|
value: Text(details.currentLanguage.tr()),
|
||||||
leading: Icon(Icons.language),
|
leading: Icon(Icons.language),
|
||||||
onPressed: (BuildContext ctx) =>
|
onPressed: (BuildContext ctx) =>
|
||||||
showLenguageSelectionDialog(
|
showLenguageSelectionDialog(
|
||||||
@ -47,30 +47,30 @@ class SettingScreen extends HookConsumerWidget {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
SettingsSection(
|
SettingsSection(
|
||||||
title: LocaleKeys.dataSection.tr(),
|
title: Text(LocaleKeys.dataSection.tr()),
|
||||||
tiles: [
|
tiles: [
|
||||||
SettingsTile(
|
SettingsTile(
|
||||||
title: LocaleKeys.exchange.tr(),
|
title: Text(LocaleKeys.exchange.tr()),
|
||||||
subtitle: details.favoriteExchange,
|
value: Text(details.favoriteExchange),
|
||||||
leading: Icon(Icons.graphic_eq),
|
leading: Icon(Icons.graphic_eq),
|
||||||
onPressed: (BuildContext context) =>
|
onPressed: (BuildContext context) =>
|
||||||
showExchangeSelectDialog(
|
showExchangeSelectDialog(
|
||||||
context, ref, exchanges),
|
context, ref, exchanges),
|
||||||
),
|
),
|
||||||
SettingsTile(
|
SettingsTile(
|
||||||
title: LocaleKeys.topPair.tr(),
|
title: Text(LocaleKeys.topPair.tr()),
|
||||||
subtitle: details.favoritePair,
|
value: Text(details.favoritePair),
|
||||||
leading: Icon(Icons.language),
|
leading: Icon(Icons.language),
|
||||||
onPressed: (BuildContext context) =>
|
onPressed: (BuildContext context) =>
|
||||||
showTopPairSelectDialog(context, ref, pairs)),
|
showTopPairSelectDialog(context, ref, pairs)),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
SettingsSection(
|
SettingsSection(
|
||||||
title: LocaleKeys.designSection.tr(),
|
title: Text(LocaleKeys.designSection.tr()),
|
||||||
tiles: [
|
tiles: [
|
||||||
SettingsTile(
|
SettingsTile(
|
||||||
title: LocaleKeys.appTheme.tr(),
|
title: Text(LocaleKeys.appTheme.tr()),
|
||||||
subtitle: details.themeMode,
|
value: Text(details.themeMode),
|
||||||
leading: Icon(Icons.graphic_eq),
|
leading: Icon(Icons.graphic_eq),
|
||||||
onPressed: (BuildContext context) =>
|
onPressed: (BuildContext context) =>
|
||||||
showThemeSelectDialog(
|
showThemeSelectDialog(
|
||||||
|
@ -29,7 +29,7 @@ dependencies:
|
|||||||
dio: ^4.0.0
|
dio: ^4.0.0
|
||||||
flutter_dotenv: ^5.0.0
|
flutter_dotenv: ^5.0.0
|
||||||
fl_chart: ^0.36.1
|
fl_chart: ^0.36.1
|
||||||
settings_ui: ^1.0.0
|
settings_ui: ^2.0.2
|
||||||
auto_size_text: ^3.0.0-nullsafety.0
|
auto_size_text: ^3.0.0-nullsafety.0
|
||||||
flutter_secure_storage: ^4.1.0
|
flutter_secure_storage: ^4.1.0
|
||||||
easy_localization: ^3.0.0
|
easy_localization: ^3.0.0
|
||||||
|
Reference in New Issue
Block a user