Skip to content

Commit cd53e49

Browse files
committed
Minor issue fixes
1 parent 6c7e650 commit cd53e49

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

ios/Flutter/flutter_export_environment.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ export "FLUTTER_TARGET=lib/main.dart"
66
export "FLUTTER_BUILD_DIR=build"
77
export "SYMROOT=${SOURCE_ROOT}/../build/ios"
88
export "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"

lib/screens/watch_list.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

lib/utils/utils.dart

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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

5449
Future<bool> checkNetworkStatusBeforeApiCall(
5550
Function(SnackBar) callback) async {

0 commit comments

Comments
 (0)