import 'package:flutter/material.dart'; class PlotInformationScreen extends StatefulWidget { @override _PlotInformationScreenState createState() => _PlotInformationScreenState(); } class _PlotInformationScreenState extends State { @override Widget build(BuildContext context) { return Container( child: Text("Thông tin lô"), ); } }