Skip to content

Instantly share code, notes, and snippets.

View callingmybluff's full-sized avatar
🏢
Working

Ismaeel callingmybluff

🏢
Working
View GitHub Profile
@callingmybluff
callingmybluff / express simple routing.dart
Created February 21, 2019 14:09
A minimal example of using Express
void main() {
runApp(
Express(
router: ExpressRouter(
routes: {
'/': ExpressRoute(
build: (BuildContext context) => FirstPage(),
actions: {
'next': '/secondPage',
},