Creating Like button in Flutter || Customising Like Button in Flutter

Поделиться
HTML-код
  • Опубликовано: 22 окт 2024

Комментарии • 13

  • @stormlivin
    @stormlivin 3 года назад

    thank you....but it would be more helpful if you make a video of like button with firebase!

    • @CodeItOut
      @CodeItOut  3 года назад

      Yeah sure,will make that

  • @mnshaikna
    @mnshaikna 3 года назад

    Interesting Plugin

  • @kvaibhav01
    @kvaibhav01 3 года назад

    What a wonderful package! Great video :)

  • @AbhishekVerma-vh6dh
    @AbhishekVerma-vh6dh 3 года назад

    Can we add double tap ? or if we double tap on image take likeButton get lightened , Can we do this ? I yes then How ?

    • @CodeItOut
      @CodeItOut  3 года назад

      You can wrap the widget within GestureDetector wherein u can define the function for onDoubleTap argument.

  • @ps.audiwaworuntu
    @ps.audiwaworuntu 3 года назад

    how do i save the like? so that every time a user likes, the meal will automatically increase. thank you

    • @CodeItOut
      @CodeItOut  3 года назад

      U can use setState function to dynamically change the value of likeCount..Let me know if it works out

    • @ps.audiwaworuntu
      @ps.audiwaworuntu 3 года назад

      @@CodeItOut sorry where is setState? Is it like this?
      LikeButton(
      size: 40,
      likeCount: 0,
      likeBuilder: (bool like) {
      return Icon(
      Icons.favorite,
      color: like ? Colors.red : Colors.blue,
      size: 40,
      );
      },
      countBuilder: (int count, bool like, String text) {
      // ignore: unused_local_variable
      var color = like ? Colors.purple : Colors.yellow;
      Widget wid;
      setState(() {
      if (count == 0)
      wid = Text('Like Postingan iniok');
      else
      wid = Text(text);
      });
      return wid;
      },
      padding: EdgeInsets.only(top: 5.0),
      ),

    • @CodeItOut
      @CodeItOut  3 года назад

      Did it work?
      I was busy with my exams ..so didn't see the notifications

  • @LUCA54
    @LUCA54 3 года назад +1

    test