vector_ui 0.1.2 copy "vector_ui: ^0.1.2" to clipboard
vector_ui: ^0.1.2 copied to clipboard

A high-performance UI toolkit for Flutter, offering visually stunning components out of the box.

example/lib/main.dart

import 'package:example/nav.dart';
import 'package:example/state.dart';
import 'package:vector_ui/vector_ui.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return StateManager(
      builder: (context, state) {
        return VectorApp(
          home: const Naviagtion(),
          themeMode: state.themeMode,
          baseTone: state.baseTone,
          accentColor: state.accentColor,
        );
      },
    );
  }
}
1
likes
140
points
8
downloads

Documentation

API reference

Publisher

verified publishernexosphere.xyz

Weekly Downloads

A high-performance UI toolkit for Flutter, offering visually stunning components out of the box.

Repository
View/report issues

Topics

#ui #widget #vector

License

MIT (license)

Dependencies

flutter, intl, two_dimensional_scrollables, window_manager

More

Packages that depend on vector_ui