v360_ui is a comprehensive Flutter UI component library providing a collection of reusable, well-designed widgets for building modern user interfaces.

Features

  • Display Components: Alert, Avatar, Badge, Icon, Progress, Info Item
  • Form Components: Button, Checkbox, Select, Text Field
  • Layout Components: Card, Collapsible Panel, Divider, Image Container, List, List Item, Table, Tile, Tile Group
  • Overlay Components: Dialog, Popover, Popover Menu, Toaster
  • Typography Components: Detail, Text List, Title
  • Common Utilities: Color definitions and utilities

Getting started

Add v360_ui to your pubspec.yaml:

dependencies:
  v360_ui: ^1.0.0

Then run:

flutter pub get

Usage

Import the complete library:

import 'package:v360_ui/v360_ui.dart';

// Use any component from the library
VButton(
  label: 'Click me',
  onPressed: () {},
)

Or import specific components as needed:

import 'package:v360_ui/form/v_button.dart';
import 'package:v360_ui/display/v_avatar.dart';

Additional information

For more information about contributing or reporting issues, please refer to the main project repository.