@@ -161,8 +161,8 @@ following cases:
161161* The two lists are identical.
162162* There is an insertion or removal of one or more widgets in exactly
163163 one place in the list.
164- * If each list contains a widget with the same key< sup >< a href = " #a1 " >5</ a ></ sup >, the two widgets are
165- matched.
164+ * If each list contains a widget with the same
165+ key< sup >< a href = " #a5 " >5</ a ></ sup >, the two widgets are matched.
166166
167167The general approach is to match up the beginning and end of both child
168168lists by comparing the runtime type and key of each widget,
@@ -323,7 +323,7 @@ For example, a single viewport can have a collapsible header followed
323323by a linear list and then a grid. All three slivers will cooperate through
324324the sliver layout protocol to produce only those children that are actually
325325visible through the viewport, regardless of whether those children belong
326- to the header, the list, or the grid.
326+ to the header, the list, or the grid< sup >< a href = " #a6 " >6</ a ></ sup > .
327327
328328### Building widgets on demand
329329
@@ -522,7 +522,8 @@ that direct interaction with the rendering layer is awkward at best
522522and bug-prone at worst.
523523
524524Flutter's widget layer introduces a composition mechanism using the
525- reactive paradigm to manipulate the underlying rendering tree.
525+ reactive paradigm<sup ><a href =" #a7 " >7</a ></sup > to manipulate the
526+ underlying rendering tree.
526527This API abstracts out the tree manipulation by combining the tree
527528creation and tree mutation steps into a single tree description (build)
528529step, where, after each change to the system state, the new configuration
@@ -553,8 +554,9 @@ is represented as an immutable object that is configured with
553554appropriate settings (color, stroke width, etc) and knows how to paint
554555itself. When it is time to draw the intermediate steps during the animation,
555556the start and end values are passed to the appropriate ` lerp ` function
556- along with a _ t_ <a href =" #a2 " >8</a > value representing the point along the animation,
557- where 0.0 represents the ` start ` and 1.0 represents the ` end ` ,
557+ along with a _ t_ value representing the point along the animation,
558+ where 0.0 represents the ` start ` and 1.0 represents the
559+ ` end ` <sup ><a href =" #a8 " >8</a ></sup >,
558560and the function returns a third immutable object representing the
559561intermediate stage.
560562
0 commit comments