mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
Beta (#1234)
This commit is contained in:
@@ -22,13 +22,13 @@ class GalleryApp extends StatefulWidget {
|
||||
const GalleryApp({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
GalleryAppState createState() => GalleryAppState();
|
||||
State<GalleryApp> createState() => _GalleryAppState();
|
||||
}
|
||||
|
||||
/// The main gallery app state.
|
||||
///
|
||||
/// Controls performance overlay, and instantiates a [Home] widget.
|
||||
class GalleryAppState extends State<GalleryApp> {
|
||||
class _GalleryAppState extends State<GalleryApp> {
|
||||
// Initialize app settings from the default configuration.
|
||||
bool _showPerformanceOverlay = defaultConfig.showPerformanceOverlay;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user