this is my demo code
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'MyApp',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
),
home: Container(child: Center(child: Text('Hello World'),),),
);
}
}
When i run this app, i got this snapshot
Anyone can tell me what happened? is this a bug? or just a feature?
this is my demo code
When i run this app, i got this snapshot
Anyone can tell me what happened? is this a bug? or just a feature?