oghref_fluent 2.0.1 copy "oghref_fluent: ^2.0.1" to clipboard
oghref_fluent: ^2.0.1 copied to clipboard

Fluent themed widget for generating rich information link from URL.

Fluent themed rich information link widgets in Flutter #

oghref_fluent version

Providing rich information links in Fluent themed widgets.

Setup #

Basic #

  1. Add dependencies into pubspec.yaml:

    dependencies:
        oghref_fluent: ^1.0.0 # Latest version
        # If required to design your own custom parsers, please also add these dependencies below:
        oghref_model: ^2.0.1
    
  2. Perform initalizations before runApp

    void main() {
        WidgetsFlutterBinding.ensureinitialized();
        OgHrefFluentBinding.ensureinitialized();
    
        runApp(const App());
    }
    
  3. Either implement OgHrefFluentCard or OgHrefFluentTile 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());
    

Usages #

Please refer to wiki page (the article will be publish as soon as possible).