pukaad_ui_app 0.0.1 copy "pukaad_ui_app: ^0.0.1" to clipboard
pukaad_ui_app: ^0.0.1 copied to clipboard

A reusable UI Kit for Pukaad applications.

Pukaad UI App #

A reusable UI Kit for Pukaad applications.

Getting Started #

To use this package, add pukaad_ui_app as a dependency in your pubspec.yaml file.

Usage #

Minimal example:

import 'package:flutter/material.dart';
// import 'package:pukaad_ui_app/pukaad_ui_app.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Pukaad UI Kit')),
        body: const Center(
          child: Text('Coming soon!'),
        ),
      ),
    );
  }
}