|
- import 'package:farm_tpf/utils/const_string.dart';
- import 'package:flutter/material.dart';
-
- class EditActionHarvestScreen extends StatefulWidget {
- @override
- _EditActionHarvestScreenState createState() =>
- _EditActionHarvestScreenState();
- }
-
- class _EditActionHarvestScreenState extends State<EditActionHarvestScreen> {
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(
- title: Text(plot_action_harvest),
- ),
- );
- }
- }
|