What is About Dialog in Flutter

Sometimes, an app needs a place to put the legalese, the version number, the licenses, and all the other small print. In fact, some stores won't even let you publish your app unless it has all these formalities. You should not leave the creation of such an important part of your app until the last minute, of course. We know you would never do that, but if this happens to you, there's a widget for that!
I love about dialog in a flutter because it is quick and very attractive. It also provides the licenses of the app used.
You can easily set up this dialog if you are in the last steps of your app.
It really saves time.


AboutDialog class

An about box. This is a dialog box with the application's icon, name, version number, and copyright, plus a button to show licenses for software used by the application.

To show an AboutDialog in flutter app, use showAboutDialog.

If the application has a Drawer, the AboutListTile widget can make the process of showing an about dialog simpler.
If we have used a drawer in our app, then it become very easy for us to use the about dialog in a flutter.

The AboutDialog is shown by showAboutDialog includes a button, Which calls the showLicensePage of the flutter app.

The licenses shown on the LicensePage are those returned by the LicenseRegistry API, which can be used to add more licenses to the list.
I am sure that it will help you.

Post a Comment

0 Comments