|
- import 'package:farm_tpf/app.dart';
- import 'package:flutter/material.dart';
-
- class ActionPlantScreen extends StatefulWidget {
- @override
- _ActionPlantScreenState createState() => _ActionPlantScreenState();
- }
-
- class _ActionPlantScreenState extends State<ActionPlantScreen> {
- @override
- void initState() {
- super.initState();
- }
-
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(
- title: Text("Plant"),
- ),
- );
- }
- }
|