2022-05-28 07:00:42 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2022-06-04 06:42:50 +00:00
|
|
|
import 'package:flutter_switch/flutter_switch.dart';
|
|
|
|
import 'package:openclosenew/14_businessdetailsempty.dart';
|
2022-05-28 07:00:42 +00:00
|
|
|
|
2022-06-04 06:42:50 +00:00
|
|
|
import '../FontFamily.dart';
|
|
|
|
import '../colors.dart';
|
|
|
|
import '../fontsize.dart';
|
|
|
|
|
|
|
|
class page1 extends StatefulWidget {
|
2022-05-28 07:00:42 +00:00
|
|
|
const page1({Key? key}) : super(key: key);
|
|
|
|
|
2022-06-04 06:42:50 +00:00
|
|
|
@override
|
|
|
|
State<page1> createState() => _page1State();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _page1State extends State<page1> {
|
2022-05-28 07:00:42 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2022-06-04 06:42:50 +00:00
|
|
|
return Container(
|
|
|
|
height: 500,
|
|
|
|
decoration: BoxDecoration(color: Colors.white),
|
|
|
|
child: SafeArea(
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(left: 15, right: 24),
|
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
"From",
|
|
|
|
style: TextStyle(
|
|
|
|
fontFamily: "Manrope",
|
|
|
|
fontStyle: FontStyle.normal,
|
|
|
|
fontWeight: FontWeight.w300,
|
|
|
|
fontSize: 15,
|
|
|
|
color: DarkGray,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
SizedBox(
|
|
|
|
width: 120,
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
"To",
|
|
|
|
style: TextStyle(
|
|
|
|
fontFamily: "Manrope",
|
|
|
|
fontStyle: FontStyle.normal,
|
|
|
|
fontWeight: FontWeight.w300,
|
|
|
|
fontSize: 15,
|
|
|
|
color: DarkGray,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
2022-05-29 18:28:03 +00:00
|
|
|
),
|
2022-06-04 06:42:50 +00:00
|
|
|
),
|
2022-05-28 07:00:42 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|