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.

16 lines
383B

  1. import 'package:flutter/material.dart';
  2. class PlotInformationScreen extends StatefulWidget {
  3. @override
  4. _PlotInformationScreenState createState() => _PlotInformationScreenState();
  5. }
  6. class _PlotInformationScreenState extends State<PlotInformationScreen> {
  7. @override
  8. Widget build(BuildContext context) {
  9. return Container(
  10. child: Text("Thông tin lô"),
  11. );
  12. }
  13. }