Flutter Web iFrame 奇怪的行为

问题描述 投票:0回答:2

我的项目一个月前工作得很好,现在经过几次颤动更新后,我的 iFrame 小部件在其所需的渲染框中假居中。第一张图片是错误的行为,第二张图片是旧的工作版本。我使用的是 plugin,它可以防止分析器在使用 platformViewRegistry 时提示错误。下面是我的 iframe-widget 代码。 有人知道如何解决这个问题吗?我不想降级到旧的 flutter 版本。 感谢您的帮助!

PS:Simple Center() 不起作用

wrong behavior right behavior

我的 IFrame 小部件

// ignore: avoid_web_libraries_in_flutter
import 'dart:html';
// ignore: undefined_prefixed_name
import 'package:universal_ui/universal_ui.dart';

import 'package:flutter/material.dart';

class Iframe extends StatefulWidget {
  final String source;
  final Size size;
  Iframe(this.source, {this.size});
  @override
  _IframeState createState() => _IframeState();
}

class _IframeState extends State<Iframe> {
  Widget _iframeWidget;
  String source;
  @override
  void initState() {
    newFrame();
    super.initState();
  }

  void newFrame() async {
    print(widget.size);
    final String id = widget.source.hashCode.toString();
    final IFrameElement _iframeElement = IFrameElement();
    _iframeElement.height = widget.size?.height?.toString() ?? '500';
    _iframeElement.width = widget.size?.width?.toString() ?? '500';
    source = widget.source;
    _iframeElement.src = widget.source;
    _iframeElement.style.border = 'none';

    ui.platformViewRegistry
        .registerViewFactory(id, (int viewID) => _iframeElement);
    _iframeWidget = HtmlElementView(
      key: UniqueKey(),
      viewType: id,
    );
  }

  @override
  Widget build(BuildContext context) {
    if (source != widget.source) newFrame();
    return _iframeWidget;
  }
}

使用 IFrame 小部件

class ChatClientAnon extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return StreamCacheBuilder<Package>(
      stream: Database().streamPackage(),
      builder: (data) => Container(
        child: Row(
          children: [
            Expanded(child: SmartphoneClient('Anonym', isAnon: true), flex: 2),
            Expanded(
                child: LayoutBuilder(
                    builder: (_, c) =>
                        Iframe(data.source, size: c.biggest)),
                flex: 8),
          ],
        ),
      ),
    );
  }
}
flutter dart iframe flutter-web dart-html
2个回答
0
投票

更新:下一个 flutter 更新解决了问题


0
投票

您遇到过缓存问题吗?我在 Flutter Web 项目中使用 iframe,但浏览器正在缓存页面。您以前遇到过这个问题吗?

© www.soinside.com 2019 - 2024. All rights reserved.