import 'package:flutter/material.dart'; import 'package:flutter_switch/flutter_switch.dart'; import 'package:openclosenew/14_businessdetailsempty.dart'; import '../FontFamily.dart'; import '../colors.dart'; import '../fontsize.dart'; class page1 extends StatefulWidget { const page1({Key? key}) : super(key: key); @override State createState() => _page1State(); } class _page1State extends State { @override Widget build(BuildContext context) { 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, ), ), ], ), ), ], ), ), ); } }