web_custom_components 0.0.2
web_custom_components: ^0.0.2 copied to clipboard
Web custom Components for your website.
import 'package:flutter/material.dart';
import 'package:web_components/web_components.dart';
void main() {
runApp(const MaterialApp(home: MyApp()));
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Column(
children: [
HeaderWidget(
headerTitle: 'Home',
backgroundColor: Colors.black,
centerHeader: true,
headerStyle: TextStyle(color: Colors.white, fontSize: 33),
)
],
),
);
}
}