Description
I have been evaluating various possible options for implementing a flutter application that is effectively a specialized User Agent (i.e. browser) for a specific set of websites (web published fiction sites). I am trying to model the application after a User Agent to avoid the potential issues with stealing content or spidering. I want to allow the user of my application to interact with the site for authentication and leaving feedback while still providing an enhanced view of the actual content to read.
I really like the idea of being able to use flutter_html to parse and customize the HTML I retrieve from a site, but I really want to be able to support desktop and web platforms in addition to just Android and IOS.
Do you have any thoughts on how I might accomplish this? Do you think it would be relatively straightforward to attempt to extend flutter_html into those other platforms?