Seo Renderer Versions Save

A Flutter Web Plugin to display Text Widget as Html for SEO purpose

v0.5.0

2 years ago

0.5.0

  • Using Widget RobotDetector to detect google bot etc. debug option to enable robot mode even if user agent don't have it.
  • routeObserver name changed to seoRouteObserver
  • TextRenderer now can have Text or RichText as child or simply text as String. if both supplied text property will be prioritised.
  • style property now have TextRendererStyle which is Enum, defaults to TextRendererStyle.paragraph
  • LinkRenderer have text property instead of anchorText and href instead of link to provide Link.
  • ImageRenderer can have src which is String type and child which can be any ImageProvider. src will have priority in both them.
  • RenderScrollListener is removed and scrolls will be automatically handled.
  • All thanks to @krokyze, see PR11

v0.4.0

2 years ago

New ScrollAware widget RendererScrollListener to listen and update renderer widgets without RenderController. see PR #9 Note : This version removes the need of RenderController

v0.3.0

2 years ago

Added Element type with paragraph as default. see PR #6

v0.2.0

2 years ago

Included ImageRenderer

v0.1.0

2 years ago
  • Conditional Import in case of VM
  • Support of RichText & Text.rich()
  • Added clear() method to Controller

v0.0.2

2 years ago

Include TextRenderer and LinkRenderer Element with will be same as Widget width Automatically removing the Element in case of Pop Action.