og1_dashboard 0.0.2
og1_dashboard: ^0.0.2 copied to clipboard
OG1 Dashboard package project.
example/lib/main.dart
import './app_icons_mocks.dart';
import 'package:flutter/material.dart';
import 'package:og1_dashboard/og1_dashboard.dart';
void main() {
runApp(const Og1DashboardExample());
}
class Og1DashboardExample extends StatefulWidget {
const Og1DashboardExample({Key? key}) : super(key: key);
@override
_Og1DashboardExampleState createState() => _Og1DashboardExampleState();
}
class _Og1DashboardExampleState extends State<Og1DashboardExample> {
@override
Widget build(BuildContext context) {
return const MaterialApp(
home:
Scaffold(body: Og1Dashboard(appIcons: AppIconsMocks.appIcons108)));
}
}