drag_ball 0.1.0
drag_ball: ^0.1.0 copied to clipboard
A flutter package, inpiration Indonesian e-commerce widget or similiar AssistiveTouch on Iphone.
Dragball
A flutter package, inpiration Indonesian e-commerce widget or similiar AssistiveTouch on Iphone.
⚠️ Warning #
- Give the ball the same width as the ball size, for animation calculations
- if you are making ui for web, desktop, please don't use mediaquery computation. Use immutable value if display is resized
Example #
Dragball(
ball: FlutterLogo(
size: 70,
),
ballSize: 70,
startFromRight: true,
onTap: () {
debugPrint('Dragball Tapped ${DateTime.now().microsecond}');
},
child: Scaffold(
appBar: AppBar(
title: Text('Dragball Example'),
),
body: ListView.builder(
padding: const EdgeInsets.symmetric(horizontal: 20),
itemBuilder: (context, index) {
return Container(
height: 250,
width: double.infinity,
margin: const EdgeInsets.only(bottom: 16),
decoration: BoxDecoration(
color: Colors.grey[200],
borderRadius: const BorderRadius.all(Radius.circular(10)),
),
);
},
itemCount: 5,
),
),
);
🚧 Maintener #
Farhan Fadila
📫 How to reach me: farhan.fadila1717@gmail.com