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
458B

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