import 'package:flutter/material.dart'; class Demo2 extends StatefulWidget { const Demo2({Key? key}) : super(key: key); @override State createState() => _Demo2State(); } class _Demo2State extends State { @override Widget build(BuildContext context) { return Container( color: Colors.yellow, ); } }