Heitor Colangelo

Results 23 comments of Heitor Colangelo

Actually it is, the sample code it's really messed =/. At the time I had to hurry with those samples and it would be really good if they are better...

Which part of the sample? The test code or the code to be tested?

Oh i got you, yeah, it's also a good idea to move the code to be tested to kotlin. This can be easily done after organising it. 😬 It would...

Hello. 👋 Any news on this one? I also managed to reproduce it on version `4.6.1`. Thank you.

Hey @OscarSpruit, thanks for the reply. We had 5 occurrences in 5 different users in the last 30 days. It is indeed not urgent, I'm asking more to know if...

@orif-jr What do you want to achieve? In my case, I have a decorator for the current day and the selected text appearance is defined in the XML. If the...

@orif-jr I think you must keep a reference to that `RemoveDecorator` instance, and then pass it inside the `removeDecorator` method, like this: ``` private MaterialCalendarView widget; private RemoveDecorator decoratorReference; private...

It's not straightforward, but it works. Create those two styles in your `styles.xml` ``` @color/sl_calendar_day_text_color @color/sl_calendar_today_text_color ``` Those are used to style the **text color only**. After that, add those...

@orif-jr I think it's because you are creating a new RemoveDecorator instance before removing it. If you do that, you'll never remove the correct decorator instance from calendar. What I...

@orif-jr I'm sorry, now I got it what were you talking about. I haven't used those dots decorator yet, but I'll have to implement it in a couple of days....