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

A Flutter package for box image inside slider.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const MyHome(),
    );
  }
}

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

  @override
  State<MyHome> createState() => _MyHomeState();
}

class _MyHomeState extends State<MyHome> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text("Test Plugin"),
      ),
      body: const AhmedImageBox(),
    );
  }
}
1
likes
150
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for box image inside slider.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

carousel_slider, flutter

More

Packages that depend on ahmed_image_box