mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-08 19:59:29 +00:00
Merge remote-tracking branch 'origin_SW/staging' into ui-fixes
This commit is contained in:
commit
4b9c2bfc9c
5 changed files with 9 additions and 4 deletions
Binary file not shown.
Binary file not shown.
|
@ -88,7 +88,12 @@ class Wallets extends ChangeNotifier {
|
|||
result.add(Tuple2(coin, map[coin]!));
|
||||
}
|
||||
|
||||
result.sort((a, b) => a.item1.prettyName.compareTo(b.item1.prettyName));
|
||||
// result.sort((a, b) => a.item1.prettyName.compareTo(b.item1.prettyName));
|
||||
result.sort((a, b) => a.item1.prettyName == "Bitcoin"
|
||||
? -1
|
||||
: b.item1.prettyName == "Monero"
|
||||
? 1
|
||||
: a.item1.prettyName.compareTo(b.item1.prettyName));
|
||||
|
||||
return result;
|
||||
}
|
||||
|
|
|
@ -31,8 +31,9 @@ import 'package:stackwallet/services/coins/wownero/wownero_wallet.dart' as wow;
|
|||
import 'package:stackwallet/utilities/constants.dart';
|
||||
|
||||
enum Coin {
|
||||
banano,
|
||||
bitcoin,
|
||||
monero,
|
||||
banano,
|
||||
bitcoincash,
|
||||
dogecoin,
|
||||
eCash,
|
||||
|
@ -40,7 +41,6 @@ enum Coin {
|
|||
ethereum,
|
||||
firo,
|
||||
litecoin,
|
||||
monero,
|
||||
namecoin,
|
||||
nano,
|
||||
particl,
|
||||
|
|
|
@ -11,7 +11,7 @@ description: Stack Wallet
|
|||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||
# Read more about iOS versioning at
|
||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||
version: 1.7.12+177
|
||||
version: 1.7.13+178
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.2 <4.0.0"
|
||||
|
|
Loading…
Reference in a new issue