Last updated:
0 purchases
oghref cupertino
Cupertino themed rich information link widgets in Flutter #
Providing rich information links in Cupertino (iOS) themed widgets.
Setup #
Basic #
Add dependencies into pubspec.yaml:
dependencies:
oghref_cupertino: ^1.0.0 # Latest version
# If required to design your own custom parsers, please also add these dependencies below:
oghref_model: ^2.0.1
copied to clipboard
Configurate platforms manifest files
Perform initalizations before runApp
void main() {
WidgetsFlutterBinding.ensureinitialized();
OgHrefCupertinoBinding.ensureinitialized();
runApp(const App());
}
copied to clipboard
Either implement OgHrefCupertinoCard or OgHrefCupertinoTile depending your preference by referring to example
Advance #
If custom property parser is used, please attach the parser into MetaFetch between initalizations and runApp:
MetaFetch().register(const CustomParser());
copied to clipboard
Usages #
Please refer to wiki page.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.