mc_utils 0.0.6
mc_utils: ^0.0.6 copied to clipboard
Video Player,TextField Custom,Custom Images,Custom Buttons ,Custom Icons, Custom Text, Custom DropDownButton,Custom List, Custom DateTime Format.
import 'package:example/home.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: const Home(),
theme: ThemeData(
scaffoldBackgroundColor: Colors.white,
appBarTheme: AppBarTheme(backgroundColor: Colors.grey[200])),
);
}
}