You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.5 KiB
Dart
53 lines
1.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:mc_common_app/extensions/int_extensions.dart';
|
|
import 'package:mc_common_app/extensions/string_extensions.dart';
|
|
import 'package:mc_common_app/widgets/button/show_fill_button.dart';
|
|
import 'package:mc_common_app/widgets/common_widgets/app_bar.dart';
|
|
import 'package:mc_common_app/widgets/extensions/extensions_widget.dart';
|
|
import 'package:mc_common_app/widgets/txt_field.dart';
|
|
|
|
class SendOfferPage extends StatelessWidget {
|
|
const SendOfferPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: const CustomAppBar(
|
|
title: "Send Offer",
|
|
),
|
|
body: Column(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
"Send Price Offer".toText(
|
|
fontSize: 14,
|
|
isBold: true,
|
|
),
|
|
12.height,
|
|
TxtField(
|
|
hint: "35,0000",
|
|
),
|
|
12.height,
|
|
TxtField(
|
|
hint: "Comment",
|
|
),
|
|
],
|
|
).toWhiteContainer(
|
|
width: double.infinity,
|
|
allPading: 12,
|
|
margin: const EdgeInsets.all(21),
|
|
),
|
|
ShowFillButton(
|
|
title: "Submit",
|
|
onPressed: () {},
|
|
maxWidth: double.infinity,
|
|
margin: const EdgeInsets.all(21),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|