|
|
|
|
@ -99,7 +99,7 @@ class _MyRequestsPageState extends State<MyRequestsPage> {
|
|
|
|
|
alignment: Alignment.center,
|
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 8),
|
|
|
|
|
decoration: ShapeDecoration(
|
|
|
|
|
color: selectedRequest == index ? const Color(0xFFEAF1F4) : Colors.white,
|
|
|
|
|
color: selectedRequest == index ? Color(0xFFEAF1F4):Colors.white,
|
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
|
side: BorderSide(width: 1, color: selectedRequest == index ? Color(0xFF4A8DB7) : Colors.white),
|
|
|
|
|
borderRadius: BorderRadius.circular(7),
|
|
|
|
|
@ -113,7 +113,7 @@ class _MyRequestsPageState extends State<MyRequestsPage> {
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
child: Text(requestsList[index], style: AppTextStyles.bodyText2.copyWith(color: context.isDark ? AppColor.neutral30 : AppColor.neutral50, height: 1)),
|
|
|
|
|
child: Text(requestsList[index], style: AppTextStyles.bodyText2.copyWith(color: context.isDark ? AppColor.neutral20 : AppColor.neutral50, height: 1)),
|
|
|
|
|
).onPress(() {
|
|
|
|
|
if (selectedRequest != index) {
|
|
|
|
|
setState(() {
|
|
|
|
|
|