Я только что проверил с провайдером: 4.0.5, разделил текстовое представление на другой класс и использовал потребителя, чтобы обеспечить состояние для перестроения текста, но, возможно, все виджеты были перестроены также. мой код:
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
void main() {
runApp(MyApp());
}
class MyState with ChangeNotifier {
int counter = 0;
void incre() {
counter++;
notifyListeners();
}
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: ChangeNotifierProvider(
create: (_) => MyState(),
child: 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> {
@override
Widget build(BuildContext context) {
print('build');
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Opacity(
opacity: 0.5,
child: Opacity(
opacity: 0.5,
child: Container(
decoration: BoxDecoration(color: Colors.red, boxShadow: [
BoxShadow(
color: Colors.yellow,
offset: Offset(-5, -5),
blurRadius: 25,
spreadRadius: 25)
]),
child: Center(
child: Text(
'Hello World',
style: Theme.of(context).textTheme.headline4,
),
),
),
),
),
Opacity(
opacity: 0.5,
child: Opacity(
opacity: 0.5,
child: Container(
decoration: BoxDecoration(color: Colors.red, boxShadow: [
BoxShadow(
color: Colors.yellow,
offset: Offset(-5, -5),
blurRadius: 25,
spreadRadius: 25)
]),
child: Center(
child: Text(
'Hello World',
style: Theme.of(context).textTheme.headline4,
),
),
),
),
),
Opacity(
opacity: 0.5,
child: Opacity(
opacity: 0.5,
child: Container(
decoration: BoxDecoration(color: Colors.red, boxShadow: [
BoxShadow(
color: Colors.yellow,
offset: Offset(-5, -5),
blurRadius: 25,
spreadRadius: 25)
]),
child: Center(
child: Text(
'Hello World',
style: Theme.of(context).textTheme.headline4,
),
),
),
),
),
Opacity(
opacity: 0.5,
child: Opacity(
opacity: 0.5,
child: Container(
decoration: BoxDecoration(color: Colors.red, boxShadow: [
BoxShadow(
color: Colors.yellow,
offset: Offset(-5, -5),
blurRadius: 25,
spreadRadius: 25)
]),
child: Center(
child: Text(
'Hello World',
style: Theme.of(context).textTheme.headline4,
),
),
),
),
),
SizedBox(
height: 35,
),
MyText(),
RaisedButton(
onPressed: Provider.of<MyState>(context, listen: false).incre,
// onTap: () {
// setState(() {});
// },
child: Text('click'),
)
],
),
),
);
}
}
class MyText extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Consumer<MyState>(
builder: (_, state, __) {
print('buildText2');
return Text(
'You have pushed the button this many times: ${state.counter}',
);
},
);
}
}
это экран, когда я обновляю и перестраиваю только текст, но это очень дорого.
это мой доктор-флаттер -v
[✓] Флаттер (Channel dev, v1.18.0-6.0.pre, на Ma c OS X 10.15.4 19E287, локаль en-VN) • Flutter версия 1.18.0-6.0.pre в / Users / tbm / dev / flutter_sdk / flutter • Редакция платформы 84c84fb249 (6 дней go), 2020-04-20 21:35:01 - 0400 • Версия двигателя 2bde4f0ae4 • Версия Dart 2.9.0 (сборка 2.9.0-1.0.dev a12c36dd97)