dart_board_core_plugin 1.2.7 copy "dart_board_core_plugin: ^1.2.7" to clipboard
dart_board_core_plugin: ^1.2.7 copied to clipboard

PlatformAndroid

Plugin Bindings for Dart-Board

example/lib/main.dart

import 'package:dart_board_core_plugin/dart_board_core_plugin.dart';
import 'package:dart_board_minesweeper/dart_board_minesweeper.dart';
import 'package:dart_board_spacex_ui/spacex_ui_feature.dart';
import 'package:flutter/material.dart';
import 'package:dart_board_core/dart_board_core.dart';

void main() {
  runApp(DartBoard(
    features: [
      MinesweeperFeature(),
      SpaceXUIFeature(),
      Add2AppFeature(),
    ],
    initialPath: '/minesweep',
  ));
}