neobrutalist_ui_elements 1.0.1
neobrutalist_ui_elements: ^1.0.1 copied to clipboard
This is a collection of neobrutalist UI elements for Flutter. The elements are designed to be simple, minimalistic, and easy to use.
example/lib/main.dart
import 'package:example/showcase_page.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
// ignore: public_member_api_docs
class MyApp extends StatefulWidget {
// ignore: public_member_api_docs
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Neobrutalist UI Elements',
home: ShowcasePage());
}
}