From the course: Flutter Essential Training: Build for Multiple Platforms

Unlock the full course today

Join today to access over 24,800 courses taught by industry experts.

Exploring pub.dev

Exploring pub.dev

- When we were discussing the pubspec file, we stumbled upon a few cases when we needed an external library, because the widgets provided by the SDK were not sufficient enough. One of the cases was the svg loader. When the svg image will not work with the default image loader. So we needed a different package like the flutter svg package right here. But now you must be wondering where do I find such external libraries? Comes to your rescue is the pub.dev website. Which is the package manager for official but also community maintained reusable libraries for both flutter and durt. Searching for svg itself will give you a lot of packages where if you can see, this is the package that I recommended. Let's try to search for another package, maybe fonts. So here you will find the google fonts package right here which will allow you to use all the official google fonts. So let's try to use this in our common text files…

Contents