Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
WieFel committed Dec 25, 2024
1 parent ff3eedc commit 09972dc
Show file tree
Hide file tree
Showing 7 changed files with 214 additions and 111 deletions.
6 changes: 4 additions & 2 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@ import 'package:gallerize/gallerize.dart';
import 'package:gallerize/themes/gallerize_theme_data.dart';

void main() {
runApp(MyApp());
runApp(const MyApp());
}

class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'My Fancy Widget Gallery',
theme: GallerizeThemeData.darkThemeData,
home: GallerizePage(
home: const GallerizePage(
name: "My Fancy Widget",
description:
"This is a gallery app demoing the fancy widget that I created. "
Expand Down
4 changes: 3 additions & 1 deletion example/lib/my_fancy_widget.dart
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import 'package:flutter/material.dart';

class MyFancyWidget extends StatelessWidget {
const MyFancyWidget({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return Container(
color: Colors.blue,
child: Center(
child: const Center(
child: Text("My Fancy Widget!"),
),
);
Expand Down
Loading

0 comments on commit 09972dc

Please sign in to comment.