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 EditActionDungScreen extends StatefulWidget {
  4. @override
  5. _EditActionDungScreenState createState() => _EditActionDungScreenState();
  6. }
  7. class _EditActionDungScreenState extends State<EditActionDungScreen> {
  8. @override
  9. Widget build(BuildContext context) {
  10. return Scaffold(
  11. appBar: AppBar(
  12. title: Text(plot_action_dung),
  13. ),
  14. );
  15. }
  16. }