dart 在Flutter webview上自动缩放/设置宽度

hzbexzde  于 2023-07-31  发布在  Flutter
关注(0)|答案(1)|浏览(393)

我正在使用webview插件在我的应用程序中显示图表。示例代码工作正常,它显示了我想要显示的图形的网站。我希望它能自动放大,以便我能够更好地阅读它,也因为我在一个页面中添加了多个图形。网站只有一个组件(图),没有其他组件(没有标题或其他任何东西),所以我想我不能使用JavaScript方法,我可以编程我的应用程序不显示网页的特定部分。
以下是我的当前代码:

import 'package:flutter/material.dart';
import 'package:webview_flutter/platform_interface.dart';
import 'package:webview_flutter/webview_flutter.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});
  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Color(0xFFFCFCFC),
      appBar: AppBar(
        centerTitle: true,
        title: const Text('test',
          style: TextStyle(
            fontSize: 28.0,
            fontWeight: FontWeight.bold,
            letterSpacing: 2.5,
          ),
        ),
      ),
      body: Center(
        child: Column(
          crossAxisAlignment: CrossAxisAlignment.center,
          children: [
            /*Container(
              height: 90,
              width: 90,
              color: Colors.red,
            ),*/
            Container(
              height: 150,
              child: WebView(
                initialUrl: 'https://thingspeak.com/channels/1864145/charts/1?bgcolor=%23ffffff&color=%23d62020&dynamic=true&results=60&title=Carbon+Dioxide+Concentrations&type=line',
                javascriptMode: JavascriptMode.unrestricted,),
              color: Colors.blue,
            ),
          ],
        ),
      ),
    );
  }
}

字符串
我想知道是否有一种方法可以自动缩放网站。如果没有,是否有其他插件支持此功能?

bmp9r5qi

bmp9r5qi1#

实际上,你可以使用thinkspeaks提出的height和width参数,通过使用auto value来给图表提供容器大小:height=auto,width=auto。
您应该有以下链接
https://thingspeak.com/channels/1864145/charts/1?bgcolor=%23ffffff&height=auto&width=auto&color=%23d62020&dynamic=true&results=60&title=Carbon+Dioxide+Concentrations&type=line
这里是更多的链接:https://www.mathworks.com/help/thingspeak/createchart.html
您也可以从thinkspeaks获取所有数据,并使用flutter绘图包(例如fl_chart)绘制。https://www.mathworks.com/help/thingspeak/readfield.html

相关问题