v1.0.2flexiges
Flexi ist ein dynamisches und umfassendes Flutter-Paket, das Entwicklern die Möglichkeit bietet, ihre Widgets einfach und präzise zu verschieben, zu vergrößern, zu drehen und zu skalieren. Flexi macht dies einfach und effizient.
Flexi ist ein dynamisches und umfassendes Flutter-Paket, das Entwicklern die Möglichkeit bietet, ihre Widgets einfach und präzise zu verschieben, zu vergrößern, zu drehen und zu skalieren. Flexi macht dies einfach und effizient.
^0.0.2{"sdk":"flutter"}{"sdk":"flutter"}^2.0.0Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
Flexi is a Flutter package that provides a flexible widget for zooming, panning, and rotating child widgets.
Alt TextAdd the following dependency to your pubspec.yaml file:
dependencies:
flexi: ^1.0.0
Import the package in your Dart file:
import 'package:flexi/flexi.dart';
Wrap your widget with the Flexi widget:
FlexiGes(
child: YourWidget(),
minScale: 0.8, // Set the minimum scale limit (optional)
maxScale: 2.5, // Set the maximum scale limit (optional)
onScaleUpdate: (offset, scale, rotation) {
// Handle scale update event
},
onScaleEnd: (details) {
// Handle scale end event
},
)
Check out the example directory for a working example of using the Flexi widget.
To run the tests for the Flexi package, use the following command:
flutter test flexi_test.dart
Contributions are welcome! Please submit any issues or pull requests via the GitHub repository.
This project is licensed under the MIT License.
Feel free to customize the content further based on your package's specific details and testing instructions.