woosmap_flutter 0.0.7 woosmap_flutter: ^0.0.7 copied to clipboard
Get started with the Woosmap Indoor API. View simple examples, learn the concepts, and create custom indoor maps for your site.
import 'package:flutter/material.dart';
import 'constants.dart';
import 'Screens/snippet_list.dart';
void main() {
runApp(const AppConstants(
child: MyApp(),
));
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
static const String _title = 'Code Sample';
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: _title,
home: ListWoosmapPluginSample(),
);
}
}