dashboard_grid 0.0.6 copy "dashboard_grid: ^0.0.6" to clipboard
dashboard_grid: ^0.0.6 copied to clipboard

Configurable dashboard widget, which allows drag and drop

example/lib/main.dart

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(),
    );
  }
}
2
likes
140
points
80
downloads

Publisher

unverified uploader

Weekly Downloads

Configurable dashboard widget, which allows drag and drop

Repository (GitHub)

Topics

#widget

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

collection, flutter

More

Packages that depend on dashboard_grid