some fixes

This commit is contained in:
amirrezaghabeli
2025-08-09 10:40:33 +03:30
parent 7e2a82421a
commit 99b6bbb13f
15 changed files with 84 additions and 41 deletions
@@ -126,7 +126,22 @@ class _MainTendersSliderState extends State<MainTendersSlider> {
children: [
GestureDetector(
onTap: _goToPreviousPage,
child: SvgPicture.asset(AssetsManager.arrowCircleLeft),
child: Container(
width: 32.0.w(),
height: 32.0.w(),
decoration: BoxDecoration(
shape: BoxShape.circle,
border: Border.all(color: AppColors.iconColor, width: 1.5),
),
alignment: Alignment.center,
child: SvgPicture.asset(
AssetsManager.arrowLeftSmall,
colorFilter: ColorFilter.mode(
AppColors.iconColor,
BlendMode.srcATop,
),
),
),
),
Text(
'$currentPage/${sampleTenders.length}',
@@ -138,7 +153,22 @@ class _MainTendersSliderState extends State<MainTendersSlider> {
),
GestureDetector(
onTap: _goToNextPage,
child: SvgPicture.asset(AssetsManager.arrowCircleRight),
child: Container(
width: 32.0.w(),
height: 32.0.w(),
decoration: BoxDecoration(
shape: BoxShape.circle,
border: Border.all(color: AppColors.iconColor, width: 1.5),
),
alignment: Alignment.center,
child: SvgPicture.asset(
AssetsManager.arrowRightSmall,
colorFilter: ColorFilter.mode(
AppColors.iconColor,
BlendMode.srcATop,
),
),
),
),
],
),