我想在体内使用Marquee
,但它显示的错误是类MyApp
中未定义的错误
body: Center(
child: Row (
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget> [
Marquee (
child: Text('hello world!',
style: TextStyle (
color: Colors.blueAccent,
fontWeight: FontWeight.w500,
fontSize: 40)
)
),
],
),
),
如何在体内使用Marquee
?
答案 0 :(得分:0)
在pubspec.yaml文件中依赖添加marque lib并保存。 marquee
dependencies:
flutter:
sdk: flutter
marquee: ^1.3.1
导入后:
import 'package:marquee/marquee.dart';
您可以使用
body: Center(
child: Row (
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget> [
Marquee (
child: Text('hello world!',
style: TextStyle (
color: Colors.blueAccent,
fontWeight: FontWeight.w500,
fontSize: 40)
)
),
],
),
),