dashboard_grid 0.0.6
dashboard_grid: ^0.0.6 copied to clipboard
Configurable dashboard widget, which allows drag and drop
import 'package:example/home_screen.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Dashboard Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.deepOrange,
dynamicSchemeVariant: DynamicSchemeVariant.content,
),
useMaterial3: true,
),
home: const HomeScreen(),
);
}
}