flutter_tailwindcss 0.0.4 copy "flutter_tailwindcss: ^0.0.4" to clipboard
flutter_tailwindcss: ^0.0.4 copied to clipboard

Experience tailwind writing flutter patterns.

example/lib/main.dart

import 'package:example/pages/font/index.dart';
import 'package:example/pages/home.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        backgroundColor: Colors.white,
        scaffoldBackgroundColor: Colors.white,
      ),
      initialRoute: '/font',
      routes: {
        '/': (content) => const MyHomePage(title: 'Flutter Demo Home Page'),
        '/font': (context) => const FontPage(),
      },
    );
  }
}
3
likes
110
pub points
15%
popularity

Publisher

unverified uploader

Experience tailwind writing flutter patterns.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, google_fonts, path

More

Packages that depend on flutter_tailwindcss