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

Flexi is a dynamic, comprehensive Flutter package designed to provide developers with the ability to drop, zoom, rotate, and scale their widgets with ease and precision.Flexi makes it straightforward [...]

example/lib/main.dart

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

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Flexi Widget Demo'),
      ),
      body: Center(
        child: FlexiGes(
            child: Container(
          width: 200,
          height: 200,
          color: Colors.blue,
        )),
      ),
    );
  }
}
3
likes
140
pub points
54%
popularity

Publisher

unverified uploader

Flexi is a dynamic, comprehensive Flutter package designed to provide developers with the ability to drop, zoom, rotate, and scale their widgets with ease and precision.Flexi makes it straightforward and efficient.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

defer_pointer, flutter

More

Packages that depend on flexiges