feat: plan view, wip plan view model
This commit is contained in:
@@ -22,7 +22,7 @@ class RiskProfileView extends StatelessWidget {
|
||||
title: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
BackButtonView(),
|
||||
const BackButtonView(),
|
||||
const Text('Risk Profile', textAlign: TextAlign.center),
|
||||
SizedBox(width: SizeConfig.width * 0.1)
|
||||
],
|
||||
@@ -33,11 +33,11 @@ class RiskProfileView extends StatelessWidget {
|
||||
body: Container(
|
||||
width: SizeConfig.width,
|
||||
height: SizeConfig.height,
|
||||
padding: EdgeInsets.all(24),
|
||||
padding: const EdgeInsets.all(24),
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Column(
|
||||
const Column(
|
||||
children: [
|
||||
ImageView(image: PathAssets.imgDataReport),
|
||||
SizedBox(
|
||||
@@ -66,7 +66,7 @@ class RiskProfileView extends StatelessWidget {
|
||||
),
|
||||
Column(
|
||||
children: [
|
||||
Row(
|
||||
const Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
ImageView(
|
||||
@@ -86,13 +86,13 @@ class RiskProfileView extends StatelessWidget {
|
||||
)
|
||||
],
|
||||
),
|
||||
SizedBox(
|
||||
const SizedBox(
|
||||
height: 24,
|
||||
),
|
||||
ButtonView(
|
||||
name: "Let's Start",
|
||||
onPressed: () {
|
||||
routePush(context, page: QuestionView());
|
||||
routePush(context, page: const QuestionView());
|
||||
},
|
||||
marginVertical: 0,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user