|
|
@@ -516,26 +516,30 @@ class _SectionTitle extends StatelessWidget {
|
|
|
return Center(
|
|
|
child: Row(
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
+ crossAxisAlignment:CrossAxisAlignment.center,
|
|
|
+ mainAxisAlignment: MainAxisAlignment.center,
|
|
|
children: [
|
|
|
- Container(
|
|
|
- width: 14,
|
|
|
- height: 3,
|
|
|
- decoration: BoxDecoration(
|
|
|
- color: AppColors.brand,
|
|
|
- borderRadius: BorderRadius.circular(2))),
|
|
|
- const SizedBox(width: 10),
|
|
|
- Text(title,
|
|
|
+ // Container(
|
|
|
+ // width: 14,
|
|
|
+ // height: 3,
|
|
|
+ // decoration: BoxDecoration(
|
|
|
+ // color: AppColors.brand,
|
|
|
+ // borderRadius: BorderRadius.circular(2))),
|
|
|
+ Image.asset("assets/images/ico_airdrop_left.png",height:10,),
|
|
|
+ const SizedBox(width: 5),
|
|
|
+ Padding(padding:EdgeInsetsGeometry.only(bottom:3),child:Text(title,
|
|
|
style: TextStyle(
|
|
|
color: _airdropPrimaryText(context),
|
|
|
fontSize: 14,
|
|
|
- fontWeight: FontWeight.w600)),
|
|
|
- const SizedBox(width: 10),
|
|
|
- Container(
|
|
|
- width: 14,
|
|
|
- height: 3,
|
|
|
- decoration: BoxDecoration(
|
|
|
- color: AppColors.brand,
|
|
|
- borderRadius: BorderRadius.circular(2))),
|
|
|
+ fontWeight: FontWeight.w600)),),
|
|
|
+ const SizedBox(width: 5),
|
|
|
+ Image.asset("assets/images/ico_airdrop_right.png",height:10,),
|
|
|
+ // Container(
|
|
|
+ // width: 14,
|
|
|
+ // height: 3,
|
|
|
+ // decoration: BoxDecoration(
|
|
|
+ // color: AppColors.brand,
|
|
|
+ // borderRadius: BorderRadius.circular(2))),
|
|
|
],
|
|
|
),
|
|
|
);
|