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.

15 lines
357B

  1. import 'package:flutter/material.dart';
  2. class EditActionPackingScreen extends StatefulWidget {
  3. @override
  4. _EditActionPackingScreenState createState() =>
  5. _EditActionPackingScreenState();
  6. }
  7. class _EditActionPackingScreenState extends State<EditActionPackingScreen> {
  8. @override
  9. Widget build(BuildContext context) {
  10. return Container();
  11. }
  12. }