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

A flutter widget for boxing images with slider.

example/lib/main.dart

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

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
       
        primarySwatch: Colors.blue,
      ),
      home:HomePage() ,
    );
  }
}

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

  @override
  State<HomePage> createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('plugin test'),

      ),
      body: MostafaBoxingImages(),
    );
  }
}
0
likes
140
points
1
downloads

Publisher

unverified uploader

Weekly Downloads

A flutter widget for boxing images with slider.

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

carousel_slider, flutter

More

Packages that depend on mostafa_boxing_images