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

.> A UI kit for Flutter that provides a set of reusable, well-optimized, and customizable widgets.

example/lib/main.dart

import 'package:flutter/material.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: Center(
          child: Text('Hello World!'),
        ),
      ),
    );
  }
}
1
likes
120
points
13
downloads

Publisher

unverified uploader

Weekly Downloads

.> A UI kit for Flutter that provides a set of reusable, well-optimized, and customizable widgets.

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on lents_ui