group tab and explore design done
This commit is contained in:
@@ -193,56 +193,63 @@ class _NotificationlistState extends State<Notificationlist> {
|
||||
],
|
||||
)
|
||||
: widget.followrequest == true
|
||||
? Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
text14700white(widget.name),
|
||||
sizedBoxHeight(3.h),
|
||||
text12400white('wants to follow you'),
|
||||
sizedBoxHeight(6.h),
|
||||
text12400white('3 mins ago'),
|
||||
],
|
||||
),
|
||||
sizedBoxWidth(10.w),
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
SizedBox(
|
||||
width: 80.w,
|
||||
height: 30.h,
|
||||
child: CustomButton(
|
||||
text: 'Confirm', onPressed: () {})),
|
||||
sizedBoxWidth(10.w),
|
||||
SizedBox(
|
||||
width: 80.w,
|
||||
height: 30.h,
|
||||
child: CustomButton2(
|
||||
text: 'Delete', onPressed: () {}))
|
||||
],
|
||||
)
|
||||
],
|
||||
? Expanded(
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
text14700white(widget.name),
|
||||
sizedBoxHeight(3.h),
|
||||
text12400white('wants to follow you'),
|
||||
sizedBoxHeight(6.h),
|
||||
text12400white('3 mins ago'),
|
||||
],
|
||||
),
|
||||
Spacer(),
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
SizedBox(
|
||||
width: 80.w,
|
||||
height: 30.h,
|
||||
child: CustomButton(
|
||||
text: 'Confirm', onPressed: () {})),
|
||||
sizedBoxWidth(10.w),
|
||||
SizedBox(
|
||||
width: 80.w,
|
||||
height: 30.h,
|
||||
child: CustomButton2(
|
||||
text: 'Delete', onPressed: () {}))
|
||||
],
|
||||
)
|
||||
],
|
||||
),
|
||||
)
|
||||
: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
text14400white(widget.name),
|
||||
sizedBoxHeight(6.h),
|
||||
text12400white('3 mins ago'),
|
||||
],
|
||||
),
|
||||
sizedBoxWidth(25.w),
|
||||
Image.asset(
|
||||
'assets/images/png/notifcation.png',
|
||||
width: 60.w,
|
||||
height: 60.h,
|
||||
)
|
||||
],
|
||||
: Expanded(
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
text14400white(widget.name),
|
||||
sizedBoxHeight(6.h),
|
||||
text12400white('3 mins ago'),
|
||||
],
|
||||
),
|
||||
// sizedBoxWidth(25.w),
|
||||
Spacer(),
|
||||
Expanded(
|
||||
child: Image.asset(
|
||||
'assets/images/png/notifcation.png',
|
||||
width: 90.w,
|
||||
height: 90.h,
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user