|
|
|
|
@ -209,52 +209,49 @@ class StepsWidget extends StatelessWidget {
|
|
|
|
|
Positioned(
|
|
|
|
|
top: circleTop,
|
|
|
|
|
right: 0,
|
|
|
|
|
child: InkWell(
|
|
|
|
|
onTap: () => index >= 3 ? changeCurrentTab!(4) : null,
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.end,
|
|
|
|
|
children: [
|
|
|
|
|
Container(
|
|
|
|
|
width: circleHeight,
|
|
|
|
|
height: circleHeight,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
border: index == 3
|
|
|
|
|
? Border.all(color: Color(0xFFCC9B14), width: 2)
|
|
|
|
|
: index > 3
|
|
|
|
|
? null
|
|
|
|
|
: Border.all(color: Color(0xFFCCCCCC), width: 0.75),
|
|
|
|
|
shape: BoxShape.circle,
|
|
|
|
|
color: index == 3
|
|
|
|
|
? Color(0xFFCC9B14)
|
|
|
|
|
: index > 3
|
|
|
|
|
? AppGlobal.appGreenColor
|
|
|
|
|
: Color(0xFFCCCCCC),
|
|
|
|
|
),
|
|
|
|
|
child: Center(
|
|
|
|
|
child: Icon(
|
|
|
|
|
FontAwesomeIcons.check,
|
|
|
|
|
size: 20,
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
)),
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
StepDetailsWidget(
|
|
|
|
|
stepLabel: "Plan",
|
|
|
|
|
marginLeft: 30,
|
|
|
|
|
),
|
|
|
|
|
StatusLabel(
|
|
|
|
|
selectedStepId: index,
|
|
|
|
|
stepId: 3,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.end,
|
|
|
|
|
children: [
|
|
|
|
|
Container(
|
|
|
|
|
width: circleHeight,
|
|
|
|
|
height: circleHeight,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
border: index == 3
|
|
|
|
|
? Border.all(color: Color(0xFFCC9B14), width: 2)
|
|
|
|
|
: index > 3
|
|
|
|
|
? null
|
|
|
|
|
: Border.all(color: Color(0xFFCCCCCC), width: 0.75),
|
|
|
|
|
shape: BoxShape.circle,
|
|
|
|
|
color: index == 3
|
|
|
|
|
? Color(0xFFCC9B14)
|
|
|
|
|
: index > 3
|
|
|
|
|
? AppGlobal.appGreenColor
|
|
|
|
|
: Color(0xFFCCCCCC),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
child: Center(
|
|
|
|
|
child: Icon(
|
|
|
|
|
FontAwesomeIcons.check,
|
|
|
|
|
size: 20,
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
)),
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
StepDetailsWidget(
|
|
|
|
|
stepLabel: "Plan",
|
|
|
|
|
marginLeft: 30,
|
|
|
|
|
),
|
|
|
|
|
StatusLabel(
|
|
|
|
|
selectedStepId: index,
|
|
|
|
|
stepId: 3,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
|