view_builder 0.0.4
view_builder: ^0.0.4 copied to clipboard
ViewBuilder package simplifies UI development by providing easy-to-use tools for handling server errors,onRefresh, displaying empty data messages, and creating loading animations. With this package, y [...]
import 'package:flutter/material.dart';
import 'home_page.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
debugShowCheckedModeBanner: false,
theme: ThemeData(primarySwatch: Colors.blue),
home: const HomePage(),
);
}
}