prit29 / Coders-Calendar

An android app to manage a schedule of programming contest timing of various competitive programming platforms
https://play.google.com/store/apps/details?id=com.noobsever.codingcontests
MIT License
8 stars 7 forks source link

Added toggle buttons and fragments in second layout. #60

Closed dishantvyas15 closed 3 years ago

dishantvyas15 commented 4 years ago

This PR is expected to solve issue #31 @HemangNakarani, @prit29 Please provide the names of the fragments so that I can add icons and labels in the toggle buttons. Also mention if there are any changes to be made.

dishantvyas15 commented 4 years ago

Screenshot 2020-10-20 131820

@HemangNakarani I kept the buttons at the bottom due to this instruction. Should I change?

I'll implement hide-show feature in the fragments and look into the animation part.

HemangNakarani commented 4 years ago

Screenshot 2020-10-20 131820

@HemangNakarani I kept the buttons at the bottom due to this instruction. Should I change?

I'll implement hide-show feature in the fragments and look into the animation part.

@dishantvyas15 Sorry that was written by mistake, but now keep it on top 👍

dishantvyas15 commented 4 years ago

@HemangNakarani, I may be wrong but I found that animations cannot be applied to fragments if I use show/hide to change them. Animation seems to work only while replacing fragments. Is there any way to do both the things simultaneously ??

HemangNakarani commented 4 years ago

@HemangNakarani, I may be wrong but I found that animations cannot be applied to fragments if I use show/hide to change them. Animation seems to work only while replacing fragments. Is there any way to do both the things simultaneously ??

Yupp, it's not there. But what I am saying that you can show animation in starting in onCreateView of every fragment. Check UBER app when it opens. It just animates some View and objects in fragment itself. Maybe this can be done in our case also. You can use any good ready-made animation from the internet, you don't need to write it yourself, you want to do it yourself then also it's ok.