2022-05-28 07:00:42 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class page1 extends StatelessWidget {
|
|
|
|
const page1({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2022-05-29 18:28:03 +00:00
|
|
|
return Row(
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
"From",
|
|
|
|
style: TextStyle(
|
|
|
|
fontFamily: "Manrope",
|
|
|
|
fontStyle: FontStyle.normal,
|
|
|
|
fontWeight: FontWeight.w300,
|
|
|
|
fontSize: 15,
|
|
|
|
),
|
2022-05-28 07:00:42 +00:00
|
|
|
),
|
2022-05-29 18:28:03 +00:00
|
|
|
SizedBox(
|
|
|
|
width: 120,
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
"To",
|
|
|
|
style: TextStyle(
|
|
|
|
fontFamily: "Manrope",
|
|
|
|
fontStyle: FontStyle.normal,
|
|
|
|
fontWeight: FontWeight.w300,
|
|
|
|
fontSize: 15,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
2022-05-28 07:00:42 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|