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.

20 lines
485B

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