-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Modify the wording to avoid misreading #50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:provider/provider.dart'; | ||
import 'package:provider_example/order_provider.dart'; | ||
import 'counter_model.dart'; | ||
|
||
import 'color_model.dart'; | ||
import 'counter_model.dart'; | ||
import 'goods_model.dart'; | ||
|
||
class FirstScreen extends StatelessWidget { | ||
|
@@ -26,8 +27,7 @@ class FirstScreen extends StatelessWidget { | |
), | ||
), | ||
floatingActionButton: FloatingActionButton( | ||
onPressed: () => Navigator.of(context) | ||
.push(MaterialPageRoute(builder: (context) => SecondScreen())), | ||
onPressed: () => Navigator.of(context).push(MaterialPageRoute(builder: (context) => SecondScreen())), | ||
child: Icon(Icons.navigate_next), | ||
), | ||
); | ||
|
@@ -95,8 +95,7 @@ class SecondScreen extends StatelessWidget { | |
), | ||
SizedBox(height: 20), | ||
Consumer<CounterModel>( | ||
builder: (context, CounterModel counter, child) => | ||
FloatingActionButton( | ||
builder: (context, CounterModel counter, child) => FloatingActionButton( | ||
onPressed: () => counter.increment(), | ||
child: child, | ||
), | ||
|
@@ -171,8 +170,7 @@ class GoodsListScreen extends StatelessWidget { | |
title: Text(data.goodsName), | ||
trailing: GestureDetector( | ||
onTap: () => provider.collect(index), | ||
child: Icon( | ||
data.isCollection ? Icons.star : Icons.star_border), | ||
child: Icon(data.isCollection ? Icons.star : Icons.star_border), | ||
), | ||
); | ||
}, | ||
|
@@ -196,7 +194,6 @@ class GoodsListScreen extends StatelessWidget { | |
} | ||
} | ||
|
||
|
||
class OrderListScreen extends StatefulWidget { | ||
@override | ||
_OrderListScreenState createState() => _OrderListScreenState(); | ||
|
@@ -211,22 +208,21 @@ class _OrderListScreenState extends State<OrderListScreen> { | |
value: _provider, | ||
child: Scaffold( | ||
body: Selector<OrderProvider, List<Order>>( | ||
selector: (context, provider) => provider.orderList, | ||
builder: (context, provider, child) { | ||
selector: (BuildContext _, OrderProvider provider) => provider.orderList, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 直接 _ |
||
builder: (BuildContext _, List<Order> orderList, Widget __) { | ||
return ListView.builder( | ||
itemCount: _provider.listSize, | ||
itemBuilder: (context, index) { | ||
return Selector<OrderProvider, Order>( | ||
selector: (context, provider) => provider.orderList[index], | ||
builder: (context, data, child) { | ||
selector: (BuildContext _, OrderProvider provider) => provider.orderList[index], | ||
builder: (BuildContext _, Order data, Widget __) { | ||
print(('No.${index + 1} rebuild')); | ||
|
||
return ListTile( | ||
title: Text(data.goodsName), | ||
trailing: GestureDetector( | ||
onTap: () => _provider.collect(index), | ||
child: Icon( | ||
data.isCollection ? Icons.star : Icons.star_border), | ||
child: Icon(data.isCollection ? Icons.star : Icons.star_border), | ||
), | ||
); | ||
}, | ||
|
@@ -236,7 +232,7 @@ class _OrderListScreenState extends State<OrderListScreen> { | |
}, | ||
), | ||
floatingActionButton: Consumer<OrderProvider>( | ||
builder: (context, OrderProvider provider, child) { | ||
builder: (BuildContext _, OrderProvider provider, Widget __) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 这里不传的话还是直接 _ 就好 |
||
return FloatingActionButton( | ||
child: Icon(Icons.add), | ||
onPressed: () { | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里是 dartfmt 了吗