/dbpage_routing

Primary LanguageDartGNU General Public License v3.0GPL-3.0

A Dart package containing annotations used to generate dart code for routing to the annotated class.

This package is under the following license.

Usage

A simple usage example:

import 'package:dbpage_routing/dbpage_routing.dart';

@PageRoutePath("/")
class HomePageWidget extends StatelessWidget {
}

@PageRoutePath("/?username?password", arguments: {"username": String, "password": String})
class LoginPage extends StatelessWidget {
}

Features and bugs

Please file feature requests and bugs at the issue tracker.