drag_ball

Creator: coderz1093

Last updated:

Add to Cart

Description:

drag ball

#


A flutter package, inspiration Indonesian e-commerce widget or similiar AssistiveTouch on Iphone.
🌟 Open To Work / Freelance #
Farhan The author of this package is available for hiring as Flutter Developer. See portofolio website here.
📌 Note #

Put [DragBall] on top the Scaffold


Example #
Dragball(
ball: const FlutterLogo(
size: 70,
),
initialPosition: DragballPosition.defaultPosition(),
onTap: () => debugPrint('Dragball Tapped'),
onPositionChanged: (DragballPosition position) =>
debugPrint(position.toString()),
child: Scaffold(
appBar: AppBar(
title: const Text('Dragball Example'),
),
body: ListView.builder(
padding: const EdgeInsets.all(20),
itemBuilder: (BuildContext context, int index) {
return Padding(
padding: const EdgeInsets.only(bottom: 20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: const [
SizedBox(
width: 100,
height: 30,
child: DecoratedBox(
decoration: BoxDecoration(
color: Color(0xFFE5E5E5),
borderRadius: BorderRadius.all(Radius.circular(15)),
),
),
),
SizedBox(height: 16),
SizedBox(
width: double.infinity,
height: 160,
child: DecoratedBox(
decoration: BoxDecoration(
color: Color(0xFFE5E5E5),
borderRadius: BorderRadius.all(Radius.circular(15)),
),
),
),
SizedBox(height: 16),
SizedBox(
width: 200,
height: 30,
child: DecoratedBox(
decoration: BoxDecoration(
color: Color(0xFFE5E5E5),
borderRadius: BorderRadius.all(Radius.circular(15)),
),
),
),
],
),
);
},
itemCount: 5,
),
),
);
copied to clipboard
Output #


🚧 Maintener #

Farhan Fadila
📫 How to reach me: farhan.fadila1717@gmail.com
❤️ Suport Maintener #

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.