mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-09 12:19:24 +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.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;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,8 +31,9 @@ import 'package:stackwallet/services/coins/wownero/wownero_wallet.dart' as wow;
|
||||||
import 'package:stackwallet/utilities/constants.dart';
|
import 'package:stackwallet/utilities/constants.dart';
|
||||||
|
|
||||||
enum Coin {
|
enum Coin {
|
||||||
banano,
|
|
||||||
bitcoin,
|
bitcoin,
|
||||||
|
monero,
|
||||||
|
banano,
|
||||||
bitcoincash,
|
bitcoincash,
|
||||||
dogecoin,
|
dogecoin,
|
||||||
eCash,
|
eCash,
|
||||||
|
@ -40,7 +41,6 @@ enum Coin {
|
||||||
ethereum,
|
ethereum,
|
||||||
firo,
|
firo,
|
||||||
litecoin,
|
litecoin,
|
||||||
monero,
|
|
||||||
namecoin,
|
namecoin,
|
||||||
nano,
|
nano,
|
||||||
particl,
|
particl,
|
||||||
|
|
|
@ -11,7 +11,7 @@ description: Stack Wallet
|
||||||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||||
# Read more about iOS versioning at
|
# Read more about iOS versioning at
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
version: 1.7.12+177
|
version: 1.7.13+178
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.2 <4.0.0"
|
sdk: ">=3.0.2 <4.0.0"
|
||||||
|
|
Loading…
Reference in a new issue