v1.0.2flexiges
Flexi é um pacote Flutter dinâmico e abrangente projetado para fornecer aos desenvolvedores a capacidade de soltar, ampliar, girar e dimensionar seus widgets com facilidade e precisão. O Flexi torna tudo isso simples e eficiente.
Flexi é um pacote Flutter dinâmico e abrangente projetado para fornecer aos desenvolvedores a capacidade de soltar, ampliar, girar e dimensionar seus widgets com facilidade e precisão. O Flexi torna tudo isso simples e eficiente.
^0.0.2{"sdk":"flutter"}{"sdk":"flutter"}^2.0.0Texto original em inglês. Visite o GitHub para a versão atual.
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.