q_theme_kit 0.0.8 copy "q_theme_kit: ^0.0.8" to clipboard
q_theme_kit: ^0.0.8 copied to clipboard

A flexible Flutter theme package with customizable styles for beautiful and consistent UIs.

example/lib/main.dart

import 'package:example/example_view.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData.dark(
        useMaterial3: true,
      ),
      home: ExampleView(),
    );
  }
}