mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
165 lines
7.1 KiB
Dart
165 lines
7.1 KiB
Dart
|
import 'dart:math';
|
||
|
|
||
|
import 'package:cake_wallet/core/address_validator.dart';
|
||
|
import 'package:cake_wallet/entities/sort_balance_types.dart';
|
||
|
import 'package:cake_wallet/generated/i18n.dart';
|
||
|
import 'package:cake_wallet/routes.dart';
|
||
|
import 'package:cake_wallet/src/screens/base_page.dart';
|
||
|
import 'package:cake_wallet/src/screens/settings/widgets/settings_picker_cell.dart';
|
||
|
import 'package:cake_wallet/src/screens/settings/widgets/settings_switcher_cell.dart';
|
||
|
import 'package:cake_wallet/view_model/dashboard/home_settings_view_model.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_mobx/flutter_mobx.dart';
|
||
|
|
||
|
class HomeSettingsPage extends BasePage {
|
||
|
HomeSettingsPage(this._homeSettingsViewModel);
|
||
|
|
||
|
final HomeSettingsViewModel _homeSettingsViewModel;
|
||
|
|
||
|
final TextEditingController _searchController = TextEditingController();
|
||
|
|
||
|
@override
|
||
|
String? get title => S.current.home_screen_settings;
|
||
|
|
||
|
@override
|
||
|
Widget body(BuildContext context) {
|
||
|
return SingleChildScrollView(
|
||
|
child: Column(
|
||
|
children: [
|
||
|
Observer(
|
||
|
builder: (_) => SettingsPickerCell<SortBalanceBy>(
|
||
|
title: S.current.sort_by,
|
||
|
items: SortBalanceBy.values,
|
||
|
selectedItem: _homeSettingsViewModel.sortBalanceBy,
|
||
|
onItemSelected: _homeSettingsViewModel.setSortBalanceBy,
|
||
|
),
|
||
|
),
|
||
|
Divider(color: Theme.of(context).primaryTextTheme.bodySmall!.decorationColor!),
|
||
|
Observer(
|
||
|
builder: (_) => SettingsSwitcherCell(
|
||
|
title: S.of(context).pin_at_top(_homeSettingsViewModel.nativeToken.title),
|
||
|
value: _homeSettingsViewModel.pinNativeToken,
|
||
|
onValueChange: (_, bool value) {
|
||
|
_homeSettingsViewModel.setPinNativeToken(value);
|
||
|
},
|
||
|
),
|
||
|
),
|
||
|
Divider(color: Theme.of(context).primaryTextTheme.bodySmall!.decorationColor!),
|
||
|
const SizedBox(height: 20),
|
||
|
Row(
|
||
|
children: [
|
||
|
Expanded(
|
||
|
child: Padding(
|
||
|
padding: const EdgeInsetsDirectional.only(start: 16),
|
||
|
child: TextFormField(
|
||
|
controller: _searchController,
|
||
|
style: TextStyle(color: Theme.of(context).primaryTextTheme.titleLarge!.color!),
|
||
|
decoration: InputDecoration(
|
||
|
hintText: S.of(context).search_add_token,
|
||
|
prefixIcon: Image.asset("assets/images/search_icon.png"),
|
||
|
filled: true,
|
||
|
fillColor: Theme.of(context).accentTextTheme.displaySmall!.color!,
|
||
|
alignLabelWithHint: false,
|
||
|
contentPadding: const EdgeInsets.symmetric(vertical: 4, horizontal: 16),
|
||
|
enabledBorder: OutlineInputBorder(
|
||
|
borderRadius: BorderRadius.circular(30),
|
||
|
borderSide: const BorderSide(color: Colors.transparent),
|
||
|
),
|
||
|
focusedBorder: OutlineInputBorder(
|
||
|
borderRadius: BorderRadius.circular(30),
|
||
|
borderSide: const BorderSide(color: Colors.transparent),
|
||
|
),
|
||
|
),
|
||
|
onChanged: (String text) => _homeSettingsViewModel.changeSearchText(text),
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
RawMaterialButton(
|
||
|
onPressed: () async {
|
||
|
Navigator.pushNamed(context, Routes.editToken, arguments: {
|
||
|
'homeSettingsViewModel': _homeSettingsViewModel,
|
||
|
if (AddressValidator(type: _homeSettingsViewModel.nativeToken)
|
||
|
.isValid(_searchController.text))
|
||
|
'contractAddress': _searchController.text,
|
||
|
});
|
||
|
},
|
||
|
elevation: 0,
|
||
|
fillColor: Theme.of(context).accentTextTheme.bodySmall!.color!,
|
||
|
child: Icon(
|
||
|
Icons.add,
|
||
|
color: Theme.of(context).primaryTextTheme.titleLarge!.color!,
|
||
|
size: 22.0,
|
||
|
),
|
||
|
padding: EdgeInsets.all(12),
|
||
|
shape: CircleBorder(),
|
||
|
splashColor: Theme.of(context).accentTextTheme.bodySmall!.color!,
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
Padding(
|
||
|
padding: const EdgeInsets.only(bottom: 16, left: 16, right: 16),
|
||
|
child: Observer(
|
||
|
builder: (_) => ListView.builder(
|
||
|
itemCount: _homeSettingsViewModel.tokens.length,
|
||
|
shrinkWrap: true,
|
||
|
physics: NeverScrollableScrollPhysics(),
|
||
|
itemBuilder: (context, index) {
|
||
|
return Container(
|
||
|
margin: EdgeInsets.only(top: 16),
|
||
|
child: Observer(
|
||
|
builder: (_) {
|
||
|
final token = _homeSettingsViewModel.tokens.elementAt(index);
|
||
|
|
||
|
return SettingsSwitcherCell(
|
||
|
title: "${token.name} "
|
||
|
"(${token.symbol})",
|
||
|
value: token.enabled,
|
||
|
onValueChange: (_, bool value) {
|
||
|
_homeSettingsViewModel.changeTokenAvailability(token, value);
|
||
|
},
|
||
|
onTap: (_) {
|
||
|
Navigator.pushNamed(context, Routes.editToken, arguments: {
|
||
|
'homeSettingsViewModel': _homeSettingsViewModel,
|
||
|
'token': token,
|
||
|
});
|
||
|
},
|
||
|
leading: token.iconPath != null
|
||
|
? Container(
|
||
|
child: Image.asset(
|
||
|
token.iconPath!,
|
||
|
height: 30.0,
|
||
|
width: 30.0,
|
||
|
),
|
||
|
)
|
||
|
: Container(
|
||
|
height: 30.0,
|
||
|
width: 30.0,
|
||
|
child: Center(
|
||
|
child: Text(
|
||
|
token.symbol.substring(0, min(token.symbol.length, 2)),
|
||
|
style: TextStyle(fontSize: 11),
|
||
|
),
|
||
|
),
|
||
|
decoration: BoxDecoration(
|
||
|
shape: BoxShape.circle,
|
||
|
color: Colors.grey.shade400,
|
||
|
),
|
||
|
),
|
||
|
decoration: BoxDecoration(
|
||
|
color: Theme.of(context).accentTextTheme.bodySmall!.color!,
|
||
|
borderRadius: BorderRadius.circular(30),
|
||
|
),
|
||
|
);
|
||
|
},
|
||
|
),
|
||
|
);
|
||
|
},
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|