flutter笔记-hello dart
在Dart中,我们可以使用print函数来打印输出。以下是一些示例:
- 打印简单的字符串:
void main() {
print('Hello, Dart!');
}
- 打印变量:
void main() {
var name = 'Dart';
print('Hello, $name!');
}
- 打印表达式:
void main() {
print(2 * 4); // 输出 8
}
- 打印多个参数:
void main() {
print('Hello,', 'Dart!');
}
在Flutter中,我们可以在main函数中直接使用print函数,也可以在一个StatefulWidget的State
类的build
方法中使用。例如:
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
print('Hello, Dart!');
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Flutter Note'),
),
body: Center(
child: Text('Hello, Dart!'),
),
),
);
}
}
在这个例子中,我们在MyApp
类的build
方法中使用print函数来打印一条消息,并在应用中显示了相同的消息。
评论已关闭