我正在尝试使用 a WebView
inside of a Container
inside a Transform
。我已经用flutter_webview和flutter_inappwebview尝试过这个。
Webview
但是,当涉及a 时,变换在 Android 和 iOS 上的呈现方式不同(与 aContainer
内部有任何其他内容相反)。
我想知道是什么原因造成的,以及是否有已知的解决方法。它会影响某些库中的动画,例如在我之前提出的一个特定于库的问题中(似乎受此问题的影响)。
一个例子:
import 'package:flutter/material.dart';
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
String html =
'<!DOCTYPE html><html><body bgcolor="red"><h1>My First Heading</h1><p>My first paragraph.</p></body></html>';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
InAppWebViewController webView;
@override
dispose() {
webView.stopLoading();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Transform(
transform: pvMatrix,
alignment: FractionalOffset.center,
child: Container(
color: Colors.orange,
child: Container(
child: InAppWebView(
initialUrl: "",
initialHeaders: {},
initialOptions: InAppWebViewGroupOptions(
crossPlatform: InAppWebViewOptions(
debuggingEnabled: true,
),
),
onWebViewCreated: (InAppWebViewController controller) {
webView = controller;
webView.loadData(data: html);
},
),
margin: EdgeInsets.all(50),
),
height: 500,
),
));
}
final Matrix4 pvMatrix = Matrix4.identity()..setEntry(3, 3, 1 / 0.9);
}
在安卓上:
在 iOS 上:
非常感谢您的任何想法或见解!