drag_widgets 0.0.3 copy "drag_widgets: ^0.0.3" to clipboard
drag_widgets: ^0.0.3 copied to clipboard

drag and drop any widget

example/lib/main.dart

import 'package:drag_widgets/core/size_widget.dart';
import 'package:drag_widgets/drag_widgets.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: 'Drag Example',
      debugShowCheckedModeBanner: false,
      themeMode: ThemeMode.dark,
      theme: ThemeData(
        appBarTheme: const AppBarTheme(
          centerTitle: true,
          color: Color(0xDD181818),
          titleTextStyle: TextStyle(color: Colors.white, fontSize: 20),
        ),
        useMaterial3: true,
      ),
      home: HomeScreen(),
    );
  }
}

class HomeScreen extends StatefulWidget {
  HomeScreen({super.key});

  @override
  State<HomeScreen> createState() => _HomeScreenState();
}

class _HomeScreenState extends State<HomeScreen> {
  List items = [
    'assets/x.png',
    'assets/o.png',
    'assets/x.png',
    'assets/o.png',
    'assets/x.png',
    'assets/o.png',
    'assets/x.png',
    'assets/o.png',
    'assets/x.png',
  ];

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text("Drag Widget Example")),
      body: DragWidget(
        items: items,

        /// table form for x-o game
        child: Center(
          child: SizedBox(
            width: deviceWidth * 0.8,
            child: Table(border: TableBorder.all(), children: const [
              TableRow(children: [
                Text('\n\n', maxLines: 3),
                Text('\n\n', maxLines: 3),
                Text('\n\n', maxLines: 3),
              ]),
              TableRow(children: [
                Text('\n\n', maxLines: 3),
                Text('\n\n', maxLines: 3),
                Text('\n\n', maxLines: 3),
              ]),
              TableRow(children: [
                Text('\n\n', maxLines: 3),
                Text('\n\n', maxLines: 3),
                Text('\n\n', maxLines: 3),
              ]),
            ]),
          ),
        ),
      ),
    );
  }
}
3
likes
130
pub points
0%
popularity

Publisher

unverified uploader

drag and drop any widget

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on drag_widgets