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.

24 lines
483B

  1. import 'package:farm_tpf/app.dart';
  2. import 'package:flutter/material.dart';
  3. class ActionPlantScreen extends StatefulWidget {
  4. @override
  5. _ActionPlantScreenState createState() => _ActionPlantScreenState();
  6. }
  7. class _ActionPlantScreenState extends State<ActionPlantScreen> {
  8. @override
  9. void initState() {
  10. super.initState();
  11. }
  12. @override
  13. Widget build(BuildContext context) {
  14. return Scaffold(
  15. appBar: AppBar(
  16. title: Text("Plant"),
  17. ),
  18. );
  19. }
  20. }