I have installed flutter and need to add it to my app because I want one of it's features, and also have added a new flutter module to my app, now how should I change the existing libraries(ex: implementation 'de.hdodenhof:circleimageview:3.1.0') so that they are compatible with flutter, as in how do make my existing app fully compatible with flutter?
Asked
Active
Viewed 100 times
1 Answers
0
What do you mean by making your existing app fully compatible with Flutter ? If you successfully created a Flutter module and import it in your application, then you are able to launch an activity and display UI thanks to the Flutter engine. The library you mentioned in your post has its equivalent in a basic Material Flutter application and its called a CircleAvatar
.

glavigno
- 483
- 5
- 10
-
thanks, I read it in some doc so I had a doubt, btw how do we call the module on button click, like do we use intent or some other command? pls help – Android Mar 24 '21 at 09:57
-
Flutter team provides examples of integration on both platforms iOS and Android. Here is the link, https://github.com/flutter/samples/tree/master/add_to_app. – glavigno Mar 24 '21 at 13:19