flutter_fotoflex 0.0.1 copy "flutter_fotoflex: ^0.0.1" to clipboard
flutter_fotoflex: ^0.0.1 copied to clipboard

A Flexible Image View

example/main.dart

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

class ExampleScreen extends StatefulWidget {
  const ExampleScreen({super.key});

  @override
  State<ExampleScreen> createState() => _ExampleScreenState();
}

class _ExampleScreenState extends State<ExampleScreen> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(
        children: [
          FotoFlex(
              handleAddMoreImages: () {},
              handleDelete: (int index) {},
              handlePlaceholder: () {},
              height: 300,
              borderColor: Colors.amber,
              listImages: const [],
              width: 600)
        ],
      ),
    );
  }
}
1
likes
130
points
21
downloads

Publisher

unverified uploader

Weekly Downloads

A Flexible Image View

Homepage

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

dotted_border, flutter, path, video_player

More

Packages that depend on flutter_fotoflex