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

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