1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-14 11:28:36 +00:00

remove some elements and add settings page

This commit is contained in:
Eric Windmill
2025-08-06 12:00:00 -04:00
parent d6138c9ab8
commit d43bd76e6c
7 changed files with 115 additions and 25 deletions

View File

@@ -3,7 +3,6 @@
// found in the LICENSE file.
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'gallery_home.dart';
@@ -16,9 +15,6 @@ class CupertinoGalleryApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const CupertinoApp(
title: 'Cupertino Gallery',
home: GalleryHome(),
);
return const CupertinoApp(title: 'Cupertino Gallery', home: GalleryHome());
}
}
}