draggable_widget 2.0.0 draggable_widget: ^2.0.0 copied to clipboard
A flutter package which will help you to create a draggable widget that can be dragged around the screen.
import 'package:draggable_widget/draggable_widget.dart';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
final dragController = DragController();
@override
Widget build(BuildContext context) {
return Scaffold(
body: Stack(
children: <Widget>[
Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
TextButton(
onPressed: () {
dragController.showWidget();
},
child: Text("Show"),
),
TextButton(
onPressed: () {
dragController.hideWidget();
},
child: Text("Hide"),
),
TextButton(
onPressed: () {
dragController.jumpTo(AnchoringPosition.topRight);
},
child: Text("Move to Top Right"),
),
TextButton(
onPressed: () {
dragController.jumpTo(AnchoringPosition.topLeft);
},
child: Text("Move to Top Left"),
),
TextButton(
onPressed: () {
dragController.jumpTo(AnchoringPosition.bottomRight);
},
child: Text("Move to bottom Right"),
),
TextButton(
onPressed: () {
dragController.jumpTo(AnchoringPosition.bottomLeft);
},
child: Text("Move to Bottom Left"),
),
TextButton(
onPressed: () {
dragController.jumpTo(AnchoringPosition.center);
},
child: Text("Move to Center"),
),
],
),
),
Container(
height: 80,
width: double.infinity,
color: Colors.green,
),
DraggableWidget(
bottomMargin: 80,
topMargin: 80,
intialVisibility: true,
horizontalSpace: 20,
shadowBorderRadius: 50,
child: Container(
height: 100,
width: 200,
decoration: BoxDecoration(
color: Colors.blue,
),
child: Stack(
children: [
IconButton(icon: Icon(Icons.close), onPressed: () {})
],
),
),
initialPosition: AnchoringPosition.bottomLeft,
dragController: dragController,
)
],
),
);
}
}