walking

Creator: coderz1093

Last updated:

0 purchases

walking Image
walking Images
Add to Cart

Description:

walking

Walkint #
walkint These packages help add vitality to destinations, and you can use them for anything.
Platform Support #



Android
iOS
Web
MacOS
Linux
Windows
















Walk Container
Walk TextForm









Installation #
Add it as a dependency in their pubspec.yaml:
dependencies:
walking: ^0.0.4
copied to clipboard
Usage #
...
import 'package:walking/walking.dart';
...
copied to clipboard
Example #
walk container
WalkContainer(
width: 100,
height: 45,
angle: 90,
child: null,
colors: [Colors.red, Colors.orange],
curve: Curves.bounceOut,
duration: Duration(seconds: 1),
reverse: false,
steps: [0.2, 0.6],
thicken: 4,
)
copied to clipboard
walk text form
void main() {
runApp(const MaterialApp(home: HomePage()));
}

class HomePage extends StatefulWidget {
const HomePage({super.key});

@override
State<HomePage> createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> {
TextEditingController controller = TextEditingController();
FocusNode focusNode = FocusNode();

@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: WalkTextForm(controller: controller, focusNode: focusNode),
),
);
}
}
copied to clipboard
Check example folder for more examples.

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.