Abstract Flutter widget builder of rich information link.

OGHref model version in pub.flutter-io.cn

An abstract library for building rich information link in Flutter widgets.

Implementation

It only just define dependencies in pubspec.yaml and both builder and models are bundled already.

dependencies:
  oghref_builder: # Version cosntraint

Then, just import it:

import 'package:oghref_builder/oghref_builder.dart';

However, if custom parser is required, oghref_model must be declared at the same time:

dependencies:
  oghref_builder: # Version cosntraint
  oghref_model: # Version cosntraint

And import buffer_parser library along with oghref_builder:

import 'package:oghref_builder/oghref_builder.dart';
import 'package:oghref_model/buffer_parser.dart';

License

MIT

Libraries

oghref_builder
An abstrct Widget builder for constructing Widget of rich information link.
testing
Offers additional features for OgHrefBuilder to run widget test.