gpt4 book ai didi

android-studio - 在 Android Studio 中使用 Flutter 调试时如何 "Set Value..."

转载 作者:行者123 更新时间:2023-12-03 02:48:25 29 4
gpt4 key购买 nike

问题

以下图片和代码是使用“新建 Flutter 项目”创建 Flutter App 时的默认设置。


  import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {

@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(

primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}

class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);

final String title;

@override
_MyHomePageState createState() => new _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;

void _incrementCounter() {
setState(() {

_counter++; // <- I set a breakpoint

});
}

@override
Widget build(BuildContext context) {

return new Scaffold(
appBar: new AppBar(

title: new Text(widget.title),
),
body: new Center(

child: new Column(

mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Text(
'You have pushed the button this many times:',
),
new Text(
'$_counter',
style: Theme.of(context).textTheme.display1,
),
],
),
),
floatingActionButton: new FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: new Icon(Icons.add),
), // This trailing comma makes auto-formatting nicer for build methods.
);
}
}

我试图通过在代码中放置一个断点来“设置值...”,在使用此代码进行调试时 _counter 递增,但即使将光标悬停也无法按下。


① "调试'main.dart'(^D)"
② 断点
③ “设定值...”


  • 在 Android Studio 中使用 Flutter 进行调试时如何“设置值...”。

  • 开发环境
  • Android Studio 3.1.4
  • flutter 0.5.1
  • Dart 2
  • 为 x86 构建的 Android SDK

  • 此致,

    最佳答案

    当执行在断点处停止时,setState没有效果。setState不会直接导致重新渲染,它只是将小部件标记为重新渲染所需。

    下次同步信号来自显示器时,Flutter 会重建 View 的陈旧部分。

    关于android-studio - 在 Android Studio 中使用 Flutter 调试时如何 "Set Value...",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52016940/

    29 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com