akvelon_flutter_issue_106664_workaround 0.1.2 copy "akvelon_flutter_issue_106664_workaround: ^0.1.2" to clipboard
akvelon_flutter_issue_106664_workaround: ^0.1.2 copied to clipboard

Fixes the Flutter issue of automatically scrolling to a focused iframe when clicking outside of such iframe

example/main.dart

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

void main() {
  FlutterIssue106664Workaround.instance.apply();
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return const Scaffold(
      body:TextField(),
    );
  }
}
2
likes
140
pub points
57%
popularity

Publisher

verified publisherakvelon.com

Fixes the Flutter issue of automatically scrolling to a focused iframe when clicking outside of such iframe

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter, web_browser_detect

More

Packages that depend on akvelon_flutter_issue_106664_workaround