tailwindcss_build 0.3.1
tailwindcss_build: ^0.3.1 copied to clipboard
A comprehensive Flutter package that brings the power and convenience of Tailwind CSS utility classes to Flutter development.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'components_home.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'TailwindCSS Build Examples',
theme: ThemeData(
primarySwatch: Colors.blue,
useMaterial3: true,
fontFamily: 'Inter',
),
home: const ComponentsHome(),
debugShowCheckedModeBanner: false,
);
}
}