zoomify 1.0.2 copy "zoomify: ^1.0.2" to clipboard
zoomify: ^1.0.2 copied to clipboard

A Dart package to display and manipulate Zoomified images. Zooming and panning with gestures, mouse and keyboard

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:zoomify/zoomify.dart';

void main() => runApp(MyApp());

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

//  static const String folderUrl = 'https://kaartdekaag1933.zeilvaartwarmond.nl/kaartderkagerplassen-1933';
  static const String folderUrl = 'https://chaerte.zeilvaartwarmond.nl/Warmond_J_Douw_1667';
//  static const photoTitle = 'Kaart der Kagerplassen, Uitgave 1933';
  static const photoTitle = 'Chaerte vande vrye Heerlickheydt Warmondt, Johannes Douw, 1667';

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        debugShowCheckedModeBanner: false,
        home: Scaffold(
            appBar:
                AppBar(toolbarHeight: 30, backgroundColor: Colors.black, title: Text(photoTitle, style: TextStyle(color: Colors.white))),
            body: Zoomify(
                baseUrl: folderUrl,
                backgroundColor: Colors.black,
                showGrid: false,
                showZoomButtons: true,
                zoomButtonPosition: Alignment.centerRight,
                zoomButtonColor: Colors.white)));
  }
}
0
likes
0
points
396
downloads

Publisher

unverified uploader

Weekly Downloads

A Dart package to display and manipulate Zoomified images. Zooming and panning with gestures, mouse and keyboard

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_network_image, http, path, xml

More

Packages that depend on zoomify