loading_redman_ddur

Last updated:

0 purchases

loading_redman_ddur Image
loading_redman_ddur Images
Add to Cart

Description:

loading redman ddur

Getting started #
import package loading_redman_ddur
pub get

Usage #
'/example' folder use..
import 'package:flutter/material.dart';
import 'package:loading_redman_ddur/ManAnim.dart';

void main() {
runApp(const MyApp());
}

class MyApp extends StatelessWidget {
const MyApp({super.key});

// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(

colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(),
);
}
}

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

@override
State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: ManAnim(size: 1,),

),
);
}
}

copied to clipboard
Additional information #
I will make another animation

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.