ux_improvements 0.13.0 copy "ux_improvements: ^0.13.0" to clipboard
ux_improvements: ^0.13.0 copied to clipboard

Improvements to your overall UI/UX through various Widgets.

example/lib/main.dart

import 'package:example/routing/router.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';

void main() {
  runApp(const ProviderScope(child: UxImprovementsExample()));
}

class UxImprovementsExample extends ConsumerWidget {
  const UxImprovementsExample({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context, WidgetRef ref) {
    return MaterialApp.router(
      title: 'ux_improvements',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      routerConfig: ref.watch(router),
    );
  }
}
1
likes
150
points
217
downloads

Publisher

unverified uploader

Weekly Downloads

Improvements to your overall UI/UX through various Widgets.

Repository (GitHub)
View/report issues

Topics

#widget #image #ui #flutter

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, responsive_ux, web

More

Packages that depend on ux_improvements