This commit is contained in:
Rajshinde046
2024-05-08 15:58:31 +05:30
parent 9e8e189a91
commit de61f5563d
7 changed files with 786 additions and 366 deletions

View File

@@ -17,6 +17,7 @@ class MyTabBar extends StatelessWidget {
color: const Color(0xff6C0000),
borderRadius: BorderRadius.circular(5),
),
isScrollable: false,
dividerColor: Colors.transparent,
labelStyle: TextStyle(
fontSize: 18.sp,
@@ -38,4 +39,4 @@ class MyTabBar extends StatelessWidget {
]),
);
}
}
}

View File

@@ -71,4 +71,7 @@ class ApiUrls {
"${base}get-swing-trade-recommendations";
static String getMultibaggerRecommendations =
"${base}get-multibagger-recommendations";
//Home
static String getHome = "${base}home-page-details";
}