Material 3

I am a Costa Rican developer living in Malta and working at Platzi and Create Thrive.
Search for a command to run...

I am a Costa Rican developer living in Malta and working at Platzi and Create Thrive.
No comments yet. Be the first to comment.
In a recent interview with IEEE Spectrum magazine, Vinton Cerf, one of the founding fathers of the Internet, admitted to making three major mistakes in his career in pushing various Internet technologies. Cerf's mistakes are further evidence that eve...

My first flutter package

As developers, we may find it interesting and tempting to have a blog or an online portfolio as it helps us to have more online presence and allows us to have a space to show what we do, what we know or our previous work. In this post, I am going to ...

Use cases and implementation

What it is, how it works and how to implement it in your code

We’re excited to kick off 2023 with the release of Flutter 3.7! Flutter continues to improve the framework by adding new features such as new debugging tools and much more.
One of them is the new features of Material 3 using the ThemeData widget in your application. To take full advantage of M3 support, you will need a colour scheme, you can provide your own, or Flutter can generate one from a single seed colour using a parameter.
MaterialApp(
theme: ThemeData(
useMaterial3: true,
colorSchemeSeed: Colors.green,
),
// ...
);
If you want to see and play with these components, check out the interactive demo showing all the new features of M3: flutter.github.io/samples/web/material_3_demo
More information about M3 can be found here: