dx_shell 1.0.11 copy "dx_shell: ^1.0.11" to clipboard
dx_shell: ^1.0.11 copied to clipboard

A Flutter package that facilitates easy and efficient navigation between pages on Flutter web, while also updating the URL and fixing any incorrect or mistyped search bar entries.

example/lib/main.dart

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

void main() {
  setPathUrlStrategy();
  AppRouter().init();
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp.router(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      routerConfig: AppRouter().goRouter,
    );
  }
}
copied to clipboard
3
likes
140
points
218
downloads

Publisher

verified publishertaars.site

Weekly Downloads

2024.09.25 - 2025.04.09

A Flutter package that facilitates easy and efficient navigation between pages on Flutter web, while also updating the URL and fixing any incorrect or mistyped search bar entries.

Repository (GitHub)

Documentation

API reference

License

unknown (license)

Dependencies

autocorrect_and_autocomplete_engine, flutter, provider

More

Packages that depend on dx_shell