maplibre_ios 0.3.4+1 copy "maplibre_ios: ^0.3.4+1" to clipboard
maplibre_ios: ^0.3.4+1 copied to clipboard

PlatformiOS
unlisted

iOS implementation of the Flutter MapLibre plugin.

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('maplibre_ios example app')),
        body: const Text('This project is only to verify builds.'),
      ),
    );
  }
}