cramr_ui_lib 3.1.3 cramr_ui_lib: ^3.1.3 copied to clipboard
UI Library for all cramr derrivatives. This library contains all kinds of screens that will help language learners automate their knowledge.
Code snippet on how to potentially use the routes #
... MaterialApp( title: 'your_title', home: MyAppHomePage(title: "My App"), routes: { '/verbSelectionRoute' : (context) => VerbSelectionRoute(), '/verbIndicativeStudyRoute' : (context) => VerbIndicativeStudyRoute(), '/verbIndicativeTestRoute' : (context) => VerbIndicativeTestRoute(), '/verbEvaluateRoute' : (context) => VerbIndicativeEvaluateRoute(), }, ) ...