You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
461B

  1. import 'package:farm_tpf/utils/const_string.dart';
  2. import 'package:flutter/material.dart';
  3. class EditActionSellScreen extends StatefulWidget {
  4. @override
  5. _EditActionSellScreenState createState() => _EditActionSellScreenState();
  6. }
  7. class _EditActionSellScreenState extends State<EditActionSellScreen> {
  8. @override
  9. Widget build(BuildContext context) {
  10. return Scaffold(
  11. appBar: AppBar(
  12. title: Text(plot_action_sell),
  13. ),
  14. );
  15. }
  16. }