Our community group functionality within the AmityUIKit will allow you to explore social features and how they will look in your app
Loading...
The quickest way to start using the Community feature, all the default logic and navigation has already been defined.
Navigate to explore page widget
ListTile( title: Text('Explore'), onTap: () { // Navigate or perform action based on 'Newsfeed' tap Navigator.of(context).push(MaterialPageRoute( builder: (context) => Scaffold(body: CommunityPage()), )); }, ),