deep linking and option chain fixes

This commit is contained in:
kishan06
2024-06-09 14:37:53 +05:30
parent 2a4d8922c6
commit 563ab9eea2
7 changed files with 174 additions and 115 deletions

View File

@@ -71,7 +71,6 @@ class _HomeScreenState extends State<HomeScreen> {
String calculatePercentageChange(double openPrice, double currentPrice) {
final percentageChange = ((currentPrice - openPrice) / openPrice) * 100;
log(percentageChange.toStringAsFixed(2));
return percentageChange.toStringAsFixed(2);
}
@@ -718,7 +717,6 @@ Widget cardcallWidget(
),
GestureDetector(
onTap: () {
log("RUNNING");
Get.to(const ExploreUnseen());
},
child: Container(