response design error completed

This commit is contained in:
vignesh 2022-05-30 21:00:50 +05:30
parent e47bcdc39b
commit cb8b0f588a
3 changed files with 742 additions and 731 deletions

File diff suppressed because it is too large Load Diff

View File

@ -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),

View File

@ -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,