flutter_minemap 0.0.3 copy "flutter_minemap: ^0.0.3" to clipboard
flutter_minemap: ^0.0.3 copied to clipboard

outdated

An `MineDate` Map Component.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_minemap_example/index_page.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  void initState() {
    super.initState();
  }


  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'FlutterMinemap',
      home: IndexPage(),
    );
  }
}