ui changes

This commit is contained in:
jayesh
2024-05-15 19:03:16 +05:30
parent 4139613346
commit c2d6c5abe4
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,