pagination_map 0.0.1 copy "pagination_map: ^0.0.1" to clipboard
pagination_map: ^0.0.1 copied to clipboard

Pagination with pageView and markers throw google map

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MapApp extends StatelessWidget {
  const MapApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Map Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MapPage(),
    );
  }
}

class MapPage extends StatefulWidget {
  const MapPage({Key? key}) : super(key: key);

  @override
  State<MapPage> createState() => _MapPageState();
}

class _MapPageState extends State<MapPage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold();
  }
}
2
likes
70
pub points
0%
popularity

Publisher

verified publishermatheer.com

Pagination with pageView and markers throw google map

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, google_maps_flutter

More

Packages that depend on pagination_map