cookie_web_view 0.1.0 copy "cookie_web_view: ^0.1.0" to clipboard
cookie_web_view: ^0.1.0 copied to clipboard

outdated

A plugin for listen real web view cookie. You can use the plugin for the auth by social media. Originaly the plugin created for https://github.com/jordan1997/radio-t-client

example/lib/main.dart

import 'package:cookie_web_view/cookie_web_view.dart';
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: CookieWebView(
          onWebViewCreated: (CookieWebViewController controller) {
            controller.openUrl("https://google.com");
            controller.onCookieChange.listen((data) {
              print('cookie : $data');
            });
          },
        ),
      ),
    );
  }
}
2
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A plugin for listen real web view cookie. You can use the plugin for the auth by social media. Originaly the plugin created for https://github.com/jordan1997/radio-t-client

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

after_layout, flutter

More

Packages that depend on cookie_web_view