@@ -235,7 +235,7 @@ class CupertinoNavigationBar extends StatefulWidget implements ObstructingPrefer
235235 ),
236236 super (key: key);
237237
238- /// {@template flutter.cupertino.navBar .leading}
238+ /// {@template flutter.cupertino.CupertinoNavigationBar .leading}
239239 /// Widget to place at the start of the navigation bar. Normally a back button
240240 /// for a normal page or a cancel button for full page dialogs.
241241 ///
@@ -244,7 +244,7 @@ class CupertinoNavigationBar extends StatefulWidget implements ObstructingPrefer
244244 /// {@endtemplate}
245245 final Widget ? leading;
246246
247- /// {@template flutter.cupertino.navBar .automaticallyImplyLeading}
247+ /// {@template flutter.cupertino.CupertinoNavigationBar .automaticallyImplyLeading}
248248 /// Controls whether we should try to imply the leading widget if null.
249249 ///
250250 /// If true and [leading] is null, automatically try to deduce what the [leading]
@@ -272,7 +272,7 @@ class CupertinoNavigationBar extends StatefulWidget implements ObstructingPrefer
272272 /// This value cannot be null.
273273 final bool automaticallyImplyMiddle;
274274
275- /// {@template flutter.cupertino.navBar .previousPageTitle}
275+ /// {@template flutter.cupertino.CupertinoNavigationBar .previousPageTitle}
276276 /// Manually specify the previous route's title when automatically implying
277277 /// the leading back button.
278278 ///
@@ -293,7 +293,7 @@ class CupertinoNavigationBar extends StatefulWidget implements ObstructingPrefer
293293 /// has a `title` .
294294 final Widget ? middle;
295295
296- /// {@template flutter.cupertino.navBar .trailing}
296+ /// {@template flutter.cupertino.CupertinoNavigationBar .trailing}
297297 /// Widget to place at the end of the navigation bar. Normally additional actions
298298 /// taken on the page such as a search or edit function.
299299 /// {@endtemplate}
@@ -302,7 +302,7 @@ class CupertinoNavigationBar extends StatefulWidget implements ObstructingPrefer
302302 // TODO(xster): https://github.com/flutter/flutter/issues/10469 implement
303303 // support for double row navigation bars.
304304
305- /// {@template flutter.cupertino.navBar .backgroundColor}
305+ /// {@template flutter.cupertino.CupertinoNavigationBar .backgroundColor}
306306 /// The background color of the navigation bar. If it contains transparency, the
307307 /// tab bar will automatically produce a blurring effect to the content
308308 /// behind it.
@@ -311,7 +311,7 @@ class CupertinoNavigationBar extends StatefulWidget implements ObstructingPrefer
311311 /// {@endtemplate}
312312 final Color ? backgroundColor;
313313
314- /// {@template flutter.cupertino.navBar .brightness}
314+ /// {@template flutter.cupertino.CupertinoNavigationBar .brightness}
315315 /// The brightness of the specified [backgroundColor] .
316316 ///
317317 /// Setting this value changes the style of the system status bar. Typically
@@ -323,7 +323,7 @@ class CupertinoNavigationBar extends StatefulWidget implements ObstructingPrefer
323323 /// {@endtemplate}
324324 final Brightness ? brightness;
325325
326- /// {@template flutter.cupertino.navBar .padding}
326+ /// {@template flutter.cupertino.CupertinoNavigationBar .padding}
327327 /// Padding for the contents of the navigation bar.
328328 ///
329329 /// If null, the navigation bar will adopt the following defaults:
@@ -338,14 +338,14 @@ class CupertinoNavigationBar extends StatefulWidget implements ObstructingPrefer
338338 /// {@endtemplate}
339339 final EdgeInsetsDirectional ? padding;
340340
341- /// {@template flutter.cupertino.navBar .border}
341+ /// {@template flutter.cupertino.CupertinoNavigationBar .border}
342342 /// The border of the navigation bar. By default renders a single pixel bottom border side.
343343 ///
344344 /// If a border is null, the navigation bar will not display a border.
345345 /// {@endtemplate}
346346 final Border ? border;
347347
348- /// {@template flutter.cupertino.navBar .actionsForegroundColor}
348+ /// {@template flutter.cupertino.CupertinoNavigationBar .actionsForegroundColor}
349349 /// Default color used for text and icons of the [leading] and [trailing]
350350 /// widgets in the navigation bar.
351351 ///
@@ -360,7 +360,7 @@ class CupertinoNavigationBar extends StatefulWidget implements ObstructingPrefer
360360 )
361361 final Color ? actionsForegroundColor;
362362
363- /// {@template flutter.cupertino.navBar .transitionBetweenRoutes}
363+ /// {@template flutter.cupertino.CupertinoNavigationBar .transitionBetweenRoutes}
364364 /// Whether to transition between navigation bars.
365365 ///
366366 /// When [transitionBetweenRoutes] is true, this navigation bar will transition
@@ -379,7 +379,7 @@ class CupertinoNavigationBar extends StatefulWidget implements ObstructingPrefer
379379 /// {@endtemplate}
380380 final bool transitionBetweenRoutes;
381381
382- /// {@template flutter.cupertino.navBar .heroTag}
382+ /// {@template flutter.cupertino.CupertinoNavigationBar .heroTag}
383383 /// Tag for the navigation bar's Hero widget if [transitionBetweenRoutes] is true.
384384 ///
385385 /// Defaults to a common tag between all [CupertinoNavigationBar] and
@@ -608,12 +608,12 @@ class CupertinoSliverNavigationBar extends StatefulWidget {
608608 /// ([CupertinoPageRoute.title] ) and [automaticallyImplyTitle] must be true.
609609 final Widget ? largeTitle;
610610
611- /// {@macro flutter.cupertino.navBar .leading}
611+ /// {@macro flutter.cupertino.CupertinoNavigationBar .leading}
612612 ///
613613 /// This widget is visible in both collapsed and expanded states.
614614 final Widget ? leading;
615615
616- /// {@macro flutter.cupertino.navBar .automaticallyImplyLeading}
616+ /// {@macro flutter.cupertino.CupertinoNavigationBar .automaticallyImplyLeading}
617617 final bool automaticallyImplyLeading;
618618
619619 /// Controls whether we should try to imply the [largeTitle] widget if null.
@@ -625,7 +625,7 @@ class CupertinoSliverNavigationBar extends StatefulWidget {
625625 /// This value cannot be null.
626626 final bool automaticallyImplyTitle;
627627
628- /// {@macro flutter.cupertino.navBar .previousPageTitle}
628+ /// {@macro flutter.cupertino.CupertinoNavigationBar .previousPageTitle}
629629 final String ? previousPageTitle;
630630
631631 /// A widget to place in the middle of the static navigation bar instead of
@@ -636,24 +636,24 @@ class CupertinoSliverNavigationBar extends StatefulWidget {
636636 /// [middle] widget is provided.
637637 final Widget ? middle;
638638
639- /// {@macro flutter.cupertino.navBar .trailing}
639+ /// {@macro flutter.cupertino.CupertinoNavigationBar .trailing}
640640 ///
641641 /// This widget is visible in both collapsed and expanded states.
642642 final Widget ? trailing;
643643
644- /// {@macro flutter.cupertino.navBar .backgroundColor}
644+ /// {@macro flutter.cupertino.CupertinoNavigationBar .backgroundColor}
645645 final Color ? backgroundColor;
646646
647- /// {@macro flutter.cupertino.navBar .brightness}
647+ /// {@macro flutter.cupertino.CupertinoNavigationBar .brightness}
648648 final Brightness ? brightness;
649649
650- /// {@macro flutter.cupertino.navBar .padding}
650+ /// {@macro flutter.cupertino.CupertinoNavigationBar .padding}
651651 final EdgeInsetsDirectional ? padding;
652652
653- /// {@macro flutter.cupertino.navBar .border}
653+ /// {@macro flutter.cupertino.CupertinoNavigationBar .border}
654654 final Border ? border;
655655
656- /// {@macro flutter.cupertino.navBar .actionsForegroundColor}
656+ /// {@macro flutter.cupertino.CupertinoNavigationBar .actionsForegroundColor}
657657 ///
658658 /// The default color for text in the [largeTitle] slot is always black, as per
659659 /// iOS standard design.
@@ -663,10 +663,10 @@ class CupertinoSliverNavigationBar extends StatefulWidget {
663663 )
664664 final Color ? actionsForegroundColor;
665665
666- /// {@macro flutter.cupertino.navBar .transitionBetweenRoutes}
666+ /// {@macro flutter.cupertino.CupertinoNavigationBar .transitionBetweenRoutes}
667667 final bool transitionBetweenRoutes;
668668
669- /// {@macro flutter.cupertino.navBar .heroTag}
669+ /// {@macro flutter.cupertino.CupertinoNavigationBar .heroTag}
670670 final Object heroTag;
671671
672672 /// True if the navigation bar's background color has no transparency.
0 commit comments