color change
This commit is contained in:
@@ -47,7 +47,9 @@ class _ExploreUnseenState extends State<ExploreUnseen> {
|
||||
CommonBlurRight(),
|
||||
Obx(
|
||||
() => isApiCalling.value
|
||||
? CircularProgressIndicator()
|
||||
? Center(
|
||||
child: CircularProgressIndicator( color: Color(0xFF0093FF),),
|
||||
)
|
||||
: Stack(
|
||||
children: [
|
||||
Padding(
|
||||
@@ -56,7 +58,7 @@ class _ExploreUnseenState extends State<ExploreUnseen> {
|
||||
),
|
||||
child: isApiCalling.value
|
||||
? Center(
|
||||
child: CircularProgressIndicator(),
|
||||
child: CircularProgressIndicator( color: Color(0xFF0093FF),),
|
||||
)
|
||||
: ListView(
|
||||
physics: BouncingScrollPhysics(),
|
||||
@@ -64,6 +66,7 @@ class _ExploreUnseenState extends State<ExploreUnseen> {
|
||||
text22W600('Explore The Unseen'),
|
||||
sizedBoxHeight(35.h),
|
||||
ListView.builder(
|
||||
physics: NeverScrollableScrollPhysics(),
|
||||
shrinkWrap: true,
|
||||
itemCount: exploreModel.data!
|
||||
.exploreTheUnseenActiveCalls!.length,
|
||||
|
||||
@@ -106,7 +106,7 @@ class _HomeScreenState extends State<HomeScreen> {
|
||||
const EdgeInsets.symmetric(horizontal: 16, vertical: 16),
|
||||
child: isApiCalling.value
|
||||
? Center(
|
||||
child: CircularProgressIndicator(),
|
||||
child: CircularProgressIndicator( color: Color(0xFF0093FF),),
|
||||
)
|
||||
: ListView(
|
||||
physics: const BouncingScrollPhysics(),
|
||||
@@ -201,8 +201,8 @@ class _HomeScreenState extends State<HomeScreen> {
|
||||
height: 35.h,
|
||||
width: 105.w,
|
||||
decoration: BoxDecoration(
|
||||
color: const Color(0xFF3A3A3A)
|
||||
.withOpacity(0.6),
|
||||
color: const Color(0xFF0093FF),
|
||||
// .withOpacity(0.6),
|
||||
borderRadius:
|
||||
BorderRadius.circular(5.r),
|
||||
border: Border.all(
|
||||
@@ -588,8 +588,8 @@ Widget ProductWidget({required String text, required String subtext}) {
|
||||
begin: Alignment.topLeft,
|
||||
end: Alignment.bottomRight,
|
||||
colors: [
|
||||
Colors.white.withOpacity(0.1),
|
||||
const Color(0xFFFFFFFF).withOpacity(0.05),
|
||||
Color(0xFF2D7AEE).withOpacity(0.14),
|
||||
const Color(0xFF2D7AEE).withOpacity(0.14),
|
||||
],
|
||||
stops: [
|
||||
0.1,
|
||||
@@ -599,8 +599,8 @@ Widget ProductWidget({required String text, required String subtext}) {
|
||||
begin: Alignment.topLeft,
|
||||
end: Alignment.bottomRight,
|
||||
colors: [
|
||||
Color(0xff3A3A3A),
|
||||
Color(0xFF3A3A3A),
|
||||
Color(0xff0F2C53),
|
||||
Color(0xFF0F2C53),
|
||||
],
|
||||
),
|
||||
child: Padding(
|
||||
@@ -633,8 +633,8 @@ Widget commoncontainer(
|
||||
begin: Alignment.topLeft,
|
||||
end: Alignment.bottomRight,
|
||||
colors: [
|
||||
Colors.white.withOpacity(0.1),
|
||||
const Color(0xFFFFFFFF).withOpacity(0.05),
|
||||
Color(0xFF2D7AEE).withOpacity(0.14),
|
||||
const Color(0xFF2D7AEE).withOpacity(0.14),
|
||||
],
|
||||
stops: [
|
||||
0.1,
|
||||
@@ -644,8 +644,8 @@ Widget commoncontainer(
|
||||
begin: Alignment.topLeft,
|
||||
end: Alignment.bottomRight,
|
||||
colors: [
|
||||
Color(0xff3A3A3A),
|
||||
Color(0xFF3A3A3A),
|
||||
Color(0xff0F2C53),
|
||||
Color(0xFF0F2C53),
|
||||
],
|
||||
),
|
||||
child: Padding(
|
||||
|
||||
@@ -148,7 +148,7 @@ class _ShortTradeState extends State<ShortTrade> {
|
||||
productsController.isLoaded.value
|
||||
? const Center(
|
||||
child: CircularProgressIndicator(
|
||||
color: Colors.redAccent,
|
||||
color: Color(0xFF0093FF),
|
||||
),
|
||||
)
|
||||
: DefaultTabController(
|
||||
@@ -970,7 +970,7 @@ class _ShortTradeState extends State<ShortTrade> {
|
||||
width: 126.w,
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.circular(5),
|
||||
color: const Color(0Xff6C0000),
|
||||
color: const Color(0Xff0093FF),
|
||||
),
|
||||
child: Center(child: text16W500(text)),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user