added stock details screen and api integration
This commit is contained in:
@@ -55,4 +55,7 @@ class RouteName {
|
||||
static const String videosmore = '/videosmore';
|
||||
static const String audiomore = '/audiomore';
|
||||
static const String bookmore = '/bookmore';
|
||||
|
||||
//stock deatils
|
||||
static const String stockDetails = '/stockDetails';
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@ import 'package:get/get.dart';
|
||||
import 'package:traderscircuit/Utils/Common/noInternet.dart';
|
||||
import 'package:traderscircuit/resources/routes/route_name.dart';
|
||||
import 'package:traderscircuit/view/MainScreen/ExploreUnseen.dart';
|
||||
import 'package:traderscircuit/view/MainScreen/stockDetails/stock_details_screen.dart';
|
||||
import 'package:traderscircuit/view/Sidemenu/AboutUs.dart';
|
||||
import 'package:traderscircuit/view/Sidemenu/ContentByte/ContentBytes.dart';
|
||||
import 'package:traderscircuit/view/Sidemenu/ContentByte/AudioMore.dart';
|
||||
@@ -86,7 +87,7 @@ class AppRoutes {
|
||||
),
|
||||
GetPage(
|
||||
name: RouteName.verifyotp,
|
||||
page: () => VerifyOTP(),
|
||||
page: () => VerifyOTP(),
|
||||
),
|
||||
|
||||
//secureaccess
|
||||
@@ -190,6 +191,10 @@ class AppRoutes {
|
||||
GetPage(
|
||||
name: RouteName.myProfileScreen,
|
||||
page: () => const MyProfileScreen(),
|
||||
), //stock details
|
||||
GetPage(
|
||||
name: RouteName.stockDetails,
|
||||
page: () => const StockDetailsScreen(),
|
||||
)
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user