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,
|
||||
children: [
|
||||
DottedBorder(
|
||||
dashPattern: [5, 5, 5, 5],
|
||||
color: Color(0xff09CD99),
|
||||
padding: EdgeInsets.all(5),
|
||||
radius: Radius.circular(6),
|
||||
|
@ -30,26 +30,29 @@ class _businessState extends State<business> {
|
||||
Spacer(),
|
||||
Row(
|
||||
children: [
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(left: 55, right: 20, bottom: 24),
|
||||
child: TextButton(
|
||||
onPressed: () {
|
||||
Navigator.push(context,
|
||||
MaterialPageRoute(builder: (_) => businessempty()));
|
||||
},
|
||||
child: Text(
|
||||
"Skip",
|
||||
style: TextStyle(color: Colors.grey.shade600),
|
||||
Expanded(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.only(left: 24, bottom: 24),
|
||||
child: MaterialButton(
|
||||
height: 50,
|
||||
minWidth: double.infinity,
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(4)),
|
||||
onPressed: () {
|
||||
Navigator.push(context,
|
||||
MaterialPageRoute(builder: (_) => businessempty()));
|
||||
},
|
||||
child: Text(
|
||||
'Skip',
|
||||
style:
|
||||
TextStyle(color: Colors.grey.shade600, fontSize: 15),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
width: 50,
|
||||
),
|
||||
Expanded(
|
||||
child: Padding(
|
||||
padding:
|
||||
const EdgeInsets.only(left: 0, right: 24, bottom: 24),
|
||||
padding: const EdgeInsets.only(right: 24, bottom: 24),
|
||||
child: MaterialButton(
|
||||
height: 50,
|
||||
minWidth: double.infinity,
|
||||
|
Loading…
Reference in New Issue
Block a user