Merge pull request #62 from WDI-Ideas/jayeshjain25

ui changes
This commit is contained in:
Jayesh jain
2024-05-15 19:04:11 +05:30
committed by GitHub
2 changed files with 9 additions and 7 deletions

View File

@@ -651,7 +651,7 @@ Widget ProductWidget({
ProductsController productsController = Get.put(ProductsController());
return InkWell(
onTap: () {
mainController.selectedIndex.value == 1;
mainController.updateTab(1);
if (text == "Swing Trade") {
productsController.selectedIndex.value = 0;
} else if (text == "Options") {

View File

@@ -161,12 +161,14 @@ class _KycState extends State<Kyc> {
child: Scaffold(
appBar: CommonAppbar(
titleTxt: "KYC",
customActionWidget: InkWell(
onTap: () {
Get.toNamed(RouteName.updateriskprofile);
},
child: text16W400("skip"),
),
customActionWidget: fromScreen == "sidemenu-flow"
? SizedBox()
: InkWell(
onTap: () {
Get.toNamed(RouteName.updateriskprofile);
},
child: text16W400("skip"),
),
),
backgroundColor: Colors.black,
extendBody: true,