File tree Expand file tree Collapse file tree 3 files changed +4
-9
lines changed
Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ export "FLUTTER_TARGET=lib/main.dart"
66export " FLUTTER_BUILD_DIR=build"
77export " SYMROOT=${SOURCE_ROOT} /../build/ios"
88export " FLUTTER_FRAMEWORK_DIR=/Users/sarath/flutter/bin/cache/artifacts/engine/ios"
9- export " FLUTTER_BUILD_NAME=1.0.0 "
10- export " FLUTTER_BUILD_NUMBER=1 "
9+ export " FLUTTER_BUILD_NAME=0.1.6 "
10+ export " FLUTTER_BUILD_NUMBER=8 "
Original file line number Diff line number Diff line change @@ -79,10 +79,10 @@ class _WatchListState extends State<WatchList> with SingleTickerProviderStateMix
7979 }
8080 return ListView .builder (
8181 controller: scrollController,
82- itemCount: 12 ,
82+ itemCount: model.xpubs.length ,
8383 itemBuilder: (context, index) {
8484 return ChangeNotifierProvider .value (
85- value: model.xpubs[0 ],
85+ value: model.xpubs[index ],
8686 child: SlideUpWrapper (
8787 Card (
8888 elevation: 4 ,
Original file line number Diff line number Diff line change @@ -45,11 +45,6 @@ String getTorStatusInText(TorStatus torStatus) {
4545 return "" ;
4646}
4747
48- String formattedRate (int rate) {
49- Rate selectedRate = AppState ().selectedRate;
50- double satRate = (rate / 100000000 ).toDouble ();
51- return " ${satRate * selectedRate .rate } ${selectedRate .currency }" ;
52- }
5348
5449Future <bool > checkNetworkStatusBeforeApiCall (
5550 Function (SnackBar ) callback) async {
You can’t perform that action at this time.
0 commit comments