og1_dashboard 0.0.16 copy "og1_dashboard: ^0.0.16" to clipboard
og1_dashboard: ^0.0.16 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 MaterialApp(
        theme: ThemeData.light(),
        darkTheme: ThemeData.dark(),
        themeMode: ThemeMode.system,
        home: const Scaffold(
            body: Og1Dashboard(
          appIcons: AppIconsMocks.appIcons6,
          displayNavArrows: false,
        )));
  }
}
0
likes
120
pub points
0%
popularity

Publisher

unverified uploader

OG1 Dashboard package project.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, og1_system, og1_ui, smooth_page_indicator

More

Packages that depend on og1_dashboard