draggable.0.dart 2.36 KB
Newer Older
1 2 3 4 5 6
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:flutter/material.dart';

7
/// Flutter code sample for [Draggable].
8

9
void main() => runApp(const DraggableExampleApp());
10

11 12
class DraggableExampleApp extends StatelessWidget {
  const DraggableExampleApp({super.key});
13 14 15 16 17

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
18 19
        appBar: AppBar(title: const Text('Draggable Sample')),
        body: const DraggableExample(),
20 21 22 23 24
      ),
    );
  }
}

25 26
class DraggableExample extends StatefulWidget {
  const DraggableExample({super.key});
27 28

  @override
29
  State<DraggableExample> createState() => _DraggableExampleState();
30 31
}

32
class _DraggableExampleState extends State<DraggableExample> {
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
  int acceptedData = 0;

  @override
  Widget build(BuildContext context) {
    return Row(
      mainAxisAlignment: MainAxisAlignment.spaceEvenly,
      children: <Widget>[
        Draggable<int>(
          // Data is the value this Draggable stores.
          data: 10,
          feedback: Container(
            color: Colors.deepOrange,
            height: 100,
            width: 100,
            child: const Icon(Icons.directions_run),
          ),
          childWhenDragging: Container(
            height: 100.0,
            width: 100.0,
            color: Colors.pinkAccent,
            child: const Center(
              child: Text('Child When Dragging'),
            ),
          ),
57 58 59 60 61 62 63 64
          child: Container(
            height: 100.0,
            width: 100.0,
            color: Colors.lightGreenAccent,
            child: const Center(
              child: Text('Draggable'),
            ),
          ),
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
        ),
        DragTarget<int>(
          builder: (
            BuildContext context,
            List<dynamic> accepted,
            List<dynamic> rejected,
          ) {
            return Container(
              height: 100.0,
              width: 100.0,
              color: Colors.cyan,
              child: Center(
                child: Text('Value is updated to: $acceptedData'),
              ),
            );
          },
81
          onAcceptWithDetails: (DragTargetDetails<int> details) {
82
            setState(() {
83
              acceptedData += details.data;
84 85 86 87 88 89 90
            });
          },
        ),
      ],
    );
  }
}