99 lines
3.1 KiB
Dart
99 lines
3.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
class addbusinessdetails extends StatefulWidget {
|
|
const addbusinessdetails({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<addbusinessdetails> createState() => _addbusinessdetailsState();
|
|
}
|
|
|
|
class _addbusinessdetailsState extends State<addbusinessdetails> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
body: SafeArea(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.only(left: 15, right: 24),
|
|
child: Row(
|
|
children: [
|
|
IconButton(
|
|
icon: Icon(Icons.arrow_back, size: 24),
|
|
onPressed: () {
|
|
Navigator.pop(context);
|
|
},
|
|
),
|
|
SizedBox(
|
|
width: 20,
|
|
),
|
|
Text(
|
|
'Add Business Detail',
|
|
style: TextStyle(
|
|
fontSize: 15,
|
|
color: Color(0xff3D3D3D),
|
|
fontFamily: 'assets/fonts/Manrope-Medium.ttf',
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 30, left: 30, right: 20),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
"Website",
|
|
style: TextStyle(
|
|
fontFamily: "Manrope",
|
|
fontStyle: FontStyle.normal,
|
|
fontWeight: FontWeight.w300,
|
|
fontSize: 14,
|
|
color: Color(0xFF333333)),
|
|
),
|
|
SizedBox(
|
|
height: 10,
|
|
),
|
|
TextField(
|
|
decoration: InputDecoration(
|
|
border: InputBorder.none,
|
|
hintText: "Add if you have...",
|
|
),
|
|
),
|
|
SizedBox(
|
|
height: 15,
|
|
),
|
|
Text(
|
|
"Your working days & hours",
|
|
style: TextStyle(
|
|
fontFamily: "Manrope",
|
|
fontStyle: FontStyle.normal,
|
|
fontWeight: FontWeight.w300,
|
|
fontSize: 14,
|
|
color: Color(0xFF333333)),
|
|
),
|
|
Row(
|
|
children: [
|
|
DropdownMenuItem(
|
|
child: Text("All Days"),
|
|
),
|
|
Spacer(),
|
|
Icon(
|
|
Icons.keyboard_arrow_down_rounded,
|
|
color: Color(0xFF5C5C5C),
|
|
size: 35,
|
|
)
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|