design_raptor

Creator: coderz1093

Last updated:

0 purchases

design_raptor Image
design_raptor Images

Languages

Categories

Add to Cart

Description:

design raptor

design_raptor #
It is powerfull, easy for flutter/dart project to design screens. It Support lazy loading, new button, and awesome dialog box help user to display message while performing operation. While performing any task user can't go back.
Getting Started #
Add Dependency: #
dependecies:
design_raptor: 0.0.2
copied to clipboard
Super Simple to use: #
This is Lazy Loading support:
RaptorLoading(
shrinkWrap: true,
listDetail: data,
itemBuilder: (context, index) {
return ListTile(title: Text('$index'));
},
)
copied to clipboard
This is for button design:
RaptorButton(
icon: Icon(Icons.home),
color: Colors.red,
onSubmit: () => print("hello"),
title: "Demo",
)
copied to clipboard
This is for Dialog box design:
ElevatedButton(
onPressed: () {
showDialog(
context: context,
barrierDismissible: false,
builder: (_) => RaptorDialog(
size: MediaQuery.of(context).size,
dialogText:
Text("Demo app", style: TextStyle(fontSize: 20))),
);
},
child: Text("Start Animation"))
copied to clipboard
Animated Icon button:
RaptorTouchAnimation(
onPressed: () => print("Hii"),
animatedColor: Colors.red,
defaultColor: Colors.grey,
icon: Icons.topic,
startAnimationSize: 30,
stopAnimationSize: 50,
)
copied to clipboard

License

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

Files In This Product:

Customer Reviews

There are no reviews.