Flutter. How to Create Your Own Native Notification in Android

Artem Diashkin
LITSLINK
Published in
7 min readNov 15, 2020

--

Here we will be talking about Flutter plugging creation, Flutter → Android → Flutter communication, and after that, we will be creating our own native Android notification with attaching it to our Flutter project.

What will be covered in this article:

  • Creating Flutter Plugin project
  • How Flutter plugin works
  • The Big picture
  • Implementing native notification

Result:

Creating Flutter Plugin project

In this chapter, I will guide you through all steps you will be needed to take while creating your Flutter Plugin project.

First, open your Android Studio IDE and select Create New Flutter Project:

Next, select Flutter Plugin and click Next:

--

--