zoom_widget 0.1.1 copy "zoom_widget: ^0.1.1" to clipboard
zoom_widget: ^0.1.1 copied to clipboard

outdated

Widget to zoom on a canvas of modifiable size that a child widget can hold.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:zoom_widget/zoom_widget.dart';
 
void main() => runApp(MyApp());
 
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Material App',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Zoom example'),
        ),
        body: Zoom(
          width: 1800,
          height: 1800,
          initZoom: 0.0,
          child: Center(
            child: Container(
              child: Text('Hello World'),
            ),
          ),
        ),
      ),
    );
  }
}
206
likes
0
pub points
97%
popularity

Publisher

verified publishernairda.com.mx

Widget to zoom on a canvas of modifiable size that a child widget can hold.

Homepage

License

unknown (license)

Dependencies

flutter

More

Packages that depend on zoom_widget