response design error completed
This commit is contained in:
parent
e47bcdc39b
commit
cb8b0f588a
File diff suppressed because it is too large
Load Diff
@ -104,6 +104,7 @@ class _businessemptyState extends State<businessempty> {
|
|||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
DottedBorder(
|
DottedBorder(
|
||||||
|
dashPattern: [5, 5, 5, 5],
|
||||||
color: Color(0xff09CD99),
|
color: Color(0xff09CD99),
|
||||||
padding: EdgeInsets.all(5),
|
padding: EdgeInsets.all(5),
|
||||||
radius: Radius.circular(6),
|
radius: Radius.circular(6),
|
||||||
|
@ -30,26 +30,29 @@ class _businessState extends State<business> {
|
|||||||
Spacer(),
|
Spacer(),
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
Padding(
|
Expanded(
|
||||||
padding: const EdgeInsets.only(left: 55, right: 20, bottom: 24),
|
child: Padding(
|
||||||
child: TextButton(
|
padding: const EdgeInsets.only(left: 24, bottom: 24),
|
||||||
onPressed: () {
|
child: MaterialButton(
|
||||||
Navigator.push(context,
|
height: 50,
|
||||||
MaterialPageRoute(builder: (_) => businessempty()));
|
minWidth: double.infinity,
|
||||||
},
|
shape: RoundedRectangleBorder(
|
||||||
child: Text(
|
borderRadius: BorderRadius.circular(4)),
|
||||||
"Skip",
|
onPressed: () {
|
||||||
style: TextStyle(color: Colors.grey.shade600),
|
Navigator.push(context,
|
||||||
|
MaterialPageRoute(builder: (_) => businessempty()));
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
'Skip',
|
||||||
|
style:
|
||||||
|
TextStyle(color: Colors.grey.shade600, fontSize: 15),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
SizedBox(
|
|
||||||
width: 50,
|
|
||||||
),
|
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding:
|
padding: const EdgeInsets.only(right: 24, bottom: 24),
|
||||||
const EdgeInsets.only(left: 0, right: 24, bottom: 24),
|
|
||||||
child: MaterialButton(
|
child: MaterialButton(
|
||||||
height: 50,
|
height: 50,
|
||||||
minWidth: double.infinity,
|
minWidth: double.infinity,
|
||||||
|
Loading…
Reference in New Issue
Block a user