Giter Site home page Giter Site logo

Comments (11)

mohammadne avatar mohammadne commented on July 17, 2024 2

any idea?

from like_button.

zmtzawqlp avatar zmtzawqlp commented on July 17, 2024

why use Timer? it's just demo to do as we request service.

                        onTap: (isLiked) async {
                          await gen.addMusicsToFavorite();
                          final Completer<bool> completer =
                              new Completer<bool>();
                          Timer(
                            const Duration(milliseconds: 200),
                            () {
                              completer.complete(gen.music['is_favorite']);
                              return completer.future;
                            },
                          );
                        },

you need to know how to do it with async /await. i did't see any return from your code

from like_button.

mohammadne avatar mohammadne commented on July 17, 2024

I am new to this future topic , but what am I doing is below now is :

onTap: (_) => gen.addFavoriteMusics()

and addFavoriteMusics is

  Future<bool> addFavoriteMusics() async {
    try {
      var resp = await Music().name('/favorite').favoritePost(
      body: {'favorite': _music['is_favorite'] == true ? '0' : '1'},
      id: _music['id'],
      );
      _music['is_favorite'] = !_music['is_favorite'];
      //if it is done , do following with server
      _favoriteMusics =
            await Music().include(['album.artists']).favorite().$get();
        notifyListeners();
        return _music['is_favorite'];
      
    } catch (e) {
      return null;
    }
  }

it workes fine but it doesn't have any animation .
can you please help me that what is my problem ?

from like_button.

mohammadne avatar mohammadne commented on July 17, 2024

also I want optimistic updating effect , how can I implement that ?

from like_button.

guit4eva avatar guit4eva commented on July 17, 2024

Did you figure this out?

from like_button.

zmtzawqlp avatar zmtzawqlp commented on July 17, 2024

plz provide a runnable demo to show your issue。

from like_button.

guit4eva avatar guit4eva commented on July 17, 2024

Rough working code for reference for @mohammadne :

class _LikeButtonMainState extends State<LikeButtonMain> {
  bool _isLiked = false;
  @override
  Widget build(BuildContext context) {
    return LikeButton(
      onTap: (bool isLiked) {
        return _like(_isLiked).then((value) {
          _isLiked = value;
          return value;
        });
      },
      circleColor: CircleColor(start: Color(0xff00ddff), end: Color(0xff0099cc)),
      bubblesColor: BubblesColor(
        dotPrimaryColor: Color(0xff33b5e5),
        dotSecondaryColor: Color(0xff0099cc),
      ),
      likeBuilder: (bool isLiked) {
        return Icon(
          Icons.favorite,
          color: _isLiked ? Color(0xFFDF5757) : Colors.grey,
        );
      },
    );
  }

  Future<bool> _like(isLiked) async {
    isLiked = !isLiked;
    return isLiked;
  }
}

from like_button.

zmtzawqlp avatar zmtzawqlp commented on July 17, 2024

class _LikeButtonMainState extends State {
bool _isLiked = false;
@OverRide
Widget build(BuildContext context) {
return LikeButton(
onTap: (bool isLiked) {
return _like(isLiked);
},
circleColor: CircleColor(start: Color(0xff00ddff), end: Color(0xff0099cc)),
bubblesColor: BubblesColor(
dotPrimaryColor: Color(0xff33b5e5),
dotSecondaryColor: Color(0xff0099cc),
),
likeBuilder: (bool isLiked) {
return Icon(
Icons.favorite,
color: _isLiked ? Color(0xFFDF5757) : Colors.grey,
);
},
);
}

Future _like(isLiked) async {
isLiked = !isLiked;
return isLiked;
}
}

from like_button.

zmtzawqlp avatar zmtzawqlp commented on July 17, 2024

onTap is asynchronous call back

from like_button.

zmtzawqlp avatar zmtzawqlp commented on July 17, 2024

please double check codes in demo

from like_button.

mohammadne avatar mohammadne commented on July 17, 2024

Thanks alot.

from like_button.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.