Is it possible to create a custom quick settings tile in Flutter?

Viewed 1295
1 Answers

You can do it natively (makes more sense since it is an Android-only feature).

Every Flutter contains an android and ios folder. Inside of those folders, you will find the wrapper apps for Android and iOS.

Just open the Android project in Android Studio and follow the tutorial you linked.

Related