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.

15 lines
459B

  1. import 'package:farm_tpf/presentation/custom_widgets/widget_media_helper.dart';
  2. import 'package:flutter/material.dart';
  3. class PlotInformationScreen extends StatefulWidget {
  4. @override
  5. _PlotInformationScreenState createState() => _PlotInformationScreenState();
  6. }
  7. class _PlotInformationScreenState extends State<PlotInformationScreen> {
  8. @override
  9. Widget build(BuildContext context) {
  10. return Container(width: 200, child: WidgetMediaHelper());
  11. }
  12. }