demo2.dart 340 B

1234567891011121314151617
  1. import 'package:flutter/material.dart';
  2. class Demo2 extends StatefulWidget {
  3. const Demo2({Key? key}) : super(key: key);
  4. @override
  5. State<Demo2> createState() => _Demo2State();
  6. }
  7. class _Demo2State extends State<Demo2> {
  8. @override
  9. Widget build(BuildContext context) {
  10. return Container(
  11. color: Colors.yellow,
  12. );
  13. }
  14. }