How to Use Cupertino Sliver Navigation Bar In Flutter?

in flutter •  2 years ago 

You may find a widget from Flutter in the CupertinoSilver NavigationBar with the same name. All around the community, developers use it frequently.

Using the right widget is one of the essential Flutter developer skills required for enterprise-level application development. Here, we assist our clients in choosing the right widget to make the app work smoothly and faster without delay. The CupertinoSilver NavigationBar widgets were created to help programmers integrate iOS-themed elements into flutter programs created for the iOS platform. It has received a great deal of community support since its debut.

I’ll walk you through the overview, usage, and implementation of the class Cupertino Sliver Navigation Bar in this article.

The CustomScrollView is a sliver group in which the CupertinoSliverNavigationBar is positioned. Two portions make up the Cupertino sliver navigation bar, one of which is fixed at the top. The second one has a large title and slides out. The second paragraph will follow the first.

When the sliver widens, it will glide down to reveal the large title. If the sliver crumbles, it will bury itself behind the first part. It provides a leading and trailing widget on the static top portion that stays during scrolling, just with CupertinoNavigationBar.
To use the CupertinoNavigationBar widget in our app, use the constructor.


CupertinoSliverNavigationBar(
{Key? key,
Widget? largeTitle,
Widget? leading,
bool automaticallyImplyLeading = true,
bool automaticallyImplyTitle = true,
String? previousPageTitle,
Widget? middle,
Widget? trailing,
Border? border = _kDefaultNavBarBorder,
Color? backgroundColor,
Brightness? brightness,
EdgeInsetsDirectional? padding,
bool transitionBetweenRoutes = true,
Object heroTag = _defaultHeroTag,
bool stretch = false}
)



Below are the properties of the CupertinoNavigationBar widget.

1. largeTitle: When the navigation bar is raised, this text will be displayed below it in a larger font in the top static navigation bar.

2. automaticallyImplyLeading: Determines if we attempt to imply the leading widget in the case of a null widget.

3. leading: Adding a widget at the beginning of the navigation bar. A widget is accepted as value.

4. heroTag: As long as there is only one navigation bar per route, all navigation bars of the same navigator can transition between one another when using the default tag.

5. automaticallyImplyLeading: If this property is set to true, the scenario-appropriate leading widget will be displayed automatically. It accepts the value boolean.

6. previousPageTitle: This variable is used to give the title of the prior page route. The sliver navigation bar will use this title as the leading when the leading is null and automaticallyImplyLeading is true. A string is accepted as the value.

Let’s see an example of CupertinoNavigationBar:


0Like0Unicorn0SaveCover image for How to Use Cupertino Sliver Navigation Bar In Flutter?EditManageStatsPankaj DasPankaj Das

Posted on Aug 15 • Originally published at flutteragency.com

How to Use Cupertino Sliver Navigation Bar In Flutter?

#flutter#beginners#programming#tutorial

You may find a widget from Flutter in the CupertinoSilver NavigationBar with the same name. All around the community, developers use it frequently.

Using the right widget is one of the essential Flutter developer skills required for enterprise-level application development. Here, we assist our clients in choosing the right widget to make the app work smoothly and faster without delay. The CupertinoSilver NavigationBar widgets were created to help programmers integrate iOS-themed elements into flutter programs created for the iOS platform. It has received a great deal of community support since its debut.

I’ll walk you through the overview, usage, and implementation of the class Cupertino Sliver Navigation Bar in this article.

The CustomScrollView is a sliver group in which the CupertinoSliverNavigationBar is positioned. Two portions make up the Cupertino sliver navigation bar, one of which is fixed at the top. The second one has a large title and slides out. The second paragraph will follow the first.

When the sliver widens, it will glide down to reveal the large title. If the sliver crumbles, it will bury itself behind the first part. It provides a leading and trailing widget on the static top portion that stays during scrolling, just with CupertinoNavigationBar.

To use the CupertinoNavigationBar widget in our app, use the constructor.

CupertinoSliverNavigationBar(
{Key? key,
Widget? largeTitle,
Widget? leading,
bool automaticallyImplyLeading = true,
bool automaticallyImplyTitle = true,
String? previousPageTitle,
Widget? middle,
Widget? trailing,
Border? border = _kDefaultNavBarBorder,
Color? backgroundColor,
Brightness? brightness,
EdgeInsetsDirectional? padding,
bool transitionBetweenRoutes = true,
Object heroTag = _defaultHeroTag,
bool stretch = false}
)

Below are the properties of the CupertinoNavigationBar widget.

1. largeTitle: When the navigation bar is raised, this text will be displayed below it in a larger font in the top static navigation bar.

2. automaticallyImplyLeading: Determines if we attempt to imply the leading widget in the case of a null widget.

3. leading: Adding a widget at the beginning of the navigation bar. A widget is accepted as value.

4. heroTag: As long as there is only one navigation bar per route, all navigation bars of the same navigator can transition between one another when using the default tag.

5. automaticallyImplyLeading: If this property is set to true, the scenario-appropriate leading widget will be displayed automatically. It accepts the value boolean.

6. previousPageTitle: This variable is used to give the title of the prior page route. The sliver navigation bar will use this title as the leading when the leading is null and automaticallyImplyLeading is true. A string is accepted as the value.

Let’s see an example of CupertinoNavigationBar:

void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State createState() => _MyAppState();
}
class _MyAppState extends State {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: CupertinoPageScaffold(
backgroundColor: Colors.white,
child: CustomScrollView(
slivers: [
CupertinoSliverNavigationBar(
backgroundColor: Colors.black,
leading: CupertinoNavigationBarBackButton(
onPressed: () {},
color: CupertinoColors.activeBlue,
),
middle: const Text(
"Cupertino Sliver Navigation Bar",
style: TextStyle(color: Colors.white),
),
trailing: CupertinoButton(
padding: EdgeInsets.zero,
child: const Text(
"Done",
style: TextStyle(
color: CupertinoColors.activeBlue,
),
),
onPressed: () {},
),
largeTitle: const Padding(
padding: EdgeInsets.only(left: 20),
child: Text(
"Large Tile",
style: TextStyle(
color: CupertinoColors.white,
),
),
),
previousPageTitle: "Back",
),
SliverGrid(
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 2,
mainAxisSpacing: 10.0,
crossAxisSpacing: 10.0,
),
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) => Padding(
padding: const EdgeInsets.only(left: 10, right: 10),
child: Container(
color: CupertinoColors.systemGrey3,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Image.network(
"https://picsum.photos/250?image=9",
fit: BoxFit.fill,
),
)),
),
childCount: 10))
],
),
),
);
}
}

Output:

Cupertino Sliver Navigation

Conclusion:

The CupertinoSilverNavigationBar is a fantastic tool for improving user experience. It helps the user comprehend and maintain the fulfillment of their expectations. It is frequently used to give applications ios-styled user interfaces and themes. hope this article will help you. We are a top-notch leading Flutter development company with years of experience in customer-centric mobile application solutions for B2B and B2C clients. Get your application read with our highly experienced mobile application developers. For more details, contact us now.

Discussion (0)

UnsubscribepicCode of Conduct • Report abuse

Read next

sachinchaurasiya profile imagenoriller profile imageshubhamtiwari909 profile imagemezgoodle profile imagePankaj DasEdit profileA digital marketer who believes sarcasm is important in this serious world.

  • JOINEDNov 10, 2020

More from Pankaj Das

How to Bypass Captcha Using 2Captcha in Flutter Application?#flutter #captcha #programming #tutorialHow to Store Data as an Object in Shared Preferences in Flutter?#flutter #dart #beginners #tutorialHow To Create Cupertino Search TextField In Flutter?#flutter #dart #tutorial

void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State createState() => _MyAppState();
}
class _MyAppState extends State {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: CupertinoPageScaffold(
backgroundColor: Colors.white,
child: CustomScrollView(
slivers: [
CupertinoSliverNavigationBar(
backgroundColor: Colors.black,
leading: CupertinoNavigationBarBackButton(
onPressed: () {},
color: CupertinoColors.activeBlue,
),
middle: const Text(
"Cupertino Sliver Navigation Bar",
style: TextStyle(color: Colors.white),
),
trailing: CupertinoButton(
padding: EdgeInsets.zero,
child: const Text(
"Done",
style: TextStyle(
color: CupertinoColors.activeBlue,
),
),
onPressed: () {},
),
largeTitle: const Padding(
padding: EdgeInsets.only(left: 20),
child: Text(
"Large Tile",
style: TextStyle(
color: CupertinoColors.white,
),
),
),
previousPageTitle: "Back",
),
SliverGrid(
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 2,
mainAxisSpacing: 10.0,
crossAxisSpacing: 10.0,
),
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) => Padding(
padding: const EdgeInsets.only(left: 10, right: 10),
child: Container(
color: CupertinoColors.systemGrey3,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Image.network(
"https://picsum.photos/250?image=9",
fit: BoxFit.fill,
),
)),
),
childCount: 10))
],
),
),
);
}
}

Output:

Cupertino Sliver Navigation

Cupertino Sliver Navigation

Conclusion:

The CupertinoSilverNavigationBar is a fantastic tool for improving user experience. It helps the user comprehend and maintain the fulfillment of their expectations. It is frequently used to give applications ios-styled user interfaces and themes. hope this article will help you. We are a top-notch leading Flutter development company with years of experience in customer-centric mobile application solutions for B2B and B2C clients. Get your application read with our highly experienced mobile application developers. For more details, contact us now.

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!