webcontent_converter 0.0.6+2 webcontent_converter: ^0.0.6+2 copied to clipboard
This plugin was made for developer to convert any webcontent, web uri to image bitmap or pdf file. This plugin use WebView on android, WKWebView on Ios and chromium for desktop support.
import 'package:flutter/material.dart';
import 'route.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "webcontent converter",
initialRoute: "/",
routes: routes,
onGenerateRoute: onGenerateRoute,
);
}
}