Merge branch 'main' of http://139.59.64.64/OpenCloseApp/BusinessAppFlutter
This commit is contained in:
commit
b1a13c7169
@ -1,16 +1,18 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:dotted_border/dotted_border.dart';
|
|
||||||
|
|
||||||
class businessempty extends StatelessWidget {
|
class businessempty extends StatefulWidget {
|
||||||
const businessempty({Key? key}) : super(key: key);
|
const businessempty({Key? key}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<businessempty> createState() => _businessemptyState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _businessemptyState extends State<businessempty> {
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
backgroundColor: Colors.white,
|
backgroundColor: Colors.white,
|
||||||
body: Column(
|
body: SafeArea(
|
||||||
children: [
|
|
||||||
SafeArea(
|
|
||||||
child: Row(
|
child: Row(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
@ -64,56 +66,6 @@ class businessempty extends StatelessWidget {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Spacer(),
|
|
||||||
Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
DottedBorder(
|
|
||||||
color: Color(0xff09CD99),
|
|
||||||
padding: EdgeInsets.all(5),
|
|
||||||
radius: Radius.circular(6),
|
|
||||||
child: Container(
|
|
||||||
height: 100,
|
|
||||||
width: 330,
|
|
||||||
child: Column(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
IconButton(
|
|
||||||
icon: Image.asset('assets/images/shop.png'),
|
|
||||||
onPressed: () {
|
|
||||||
Navigator.pop(context);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
'Add your Business',
|
|
||||||
style: TextStyle(
|
|
||||||
fontFamily: 'Manrope',
|
|
||||||
fontStyle: FontStyle.normal,
|
|
||||||
fontWeight: FontWeight.w400,
|
|
||||||
fontSize: 14,
|
|
||||||
color: Color(0xff09CD99),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Spacer(),
|
|
||||||
MaterialButton(
|
|
||||||
height: 50,
|
|
||||||
minWidth: double.infinity,
|
|
||||||
color: Color(0xff12C193),
|
|
||||||
onPressed: () {},
|
|
||||||
child: Text(
|
|
||||||
'Save',
|
|
||||||
style: TextStyle(color: Colors.white, fontSize: 15),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user