quds_ui_kit 0.0.7+10 quds_ui_kit: ^0.0.7+10 copied to clipboard
Flutter UI kit [(animating icons, buttons, texts, counter, digital clock) - page transitions - toasts - dialogs- pagination - splash screen ...etc ]
import 'package:flutter/material.dart';
import 'screens/splash_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Quds UI Kit Example',
theme: ThemeData(brightness: Brightness.light),
home: const SplashScreen(),
builder: (context, child) =>
Directionality(textDirection: TextDirection.rtl, child: child!),
);
}
}