social_feed_reaction 0.0.1 copy "social_feed_reaction: ^0.0.1" to clipboard
social_feed_reaction: ^0.0.1 copied to clipboard

This is a fully dynamic dart package for incorporating social reactions into your flutter application as needed. Flutter Social Reaction is a fully customizable widget that allows you to pass your fav [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:social_feed_reaction/social_feed_reaction.dart';

void main() => runApp(const MainApp());

class MainApp extends StatelessWidget {
  const MainApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Social feed reaction',
      theme: ThemeData(primaryColor: const Color(0xff3b5998)),
      debugShowCheckedModeBanner: false,
      home: const SocialReactionMainPage(),
    );
  }
}

class SocialReactionMainPage extends StatelessWidget {
  const SocialReactionMainPage({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text(
          'Flutter Social Feed Reaction ',
          style: TextStyle(fontSize: 18.0, fontWeight: FontWeight.bold),
        ),
        centerTitle: true,
      ),
      body: const SocialReactionCollection(),
    );
  }
}
9
likes
0
pub points
26%
popularity

Publisher

verified publisherambikadulal.com.np

This is a fully dynamic dart package for incorporating social reactions into your flutter application as needed. Flutter Social Reaction is a fully customizable widget that allows you to pass your favorite emo and assets if necessary, while sample icons are already included in the package.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

audioplayers, flutter, flutter_gen, flutter_lints, path_provider

More

Packages that depend on social_feed_reaction