Skip to content
Snippets Groups Projects
Commit e265ae4c authored by Jawnnypoo's avatar Jawnnypoo
Browse files

Animate the morph when adding a new issue to a milestone

parent db92f2da
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -35,16 +35,18 @@ The following 3rd party libraries and resources are the reason this app works. R
- Parceler (https://github.com/johncarl81/parceler)
- Bypasses (https://github.com/Commit451/bypasses)
- Easel (https://github.com/Commit451/Easel)
- ForegroundViews (https://github.com/Commit451/ForegroundViews)
- ElasticDragDismissLayout (https://github.com/Commit451/ElasticDragDismissLayout)
- AdapterLayout (https://github.com/Commit451/AdapterLayout)
- Gimbal (https://github.com/Commit451/Gimbal)
- Teleprinter (https://github.com/Commit451/Teleprinter)
- BypassPicassoImageGetter (https://github.com/Commit451/BypassPicassoImageGetter)
- Jounce (https://github.com/Commit451/Jounce)
- EasyCallback (https://github.com/Commit451/EasyCallback)
- ForegroundViews (https://github.com/Commit451/ForegroundViews)
- Material-ish Progress (https://github.com/pnikosis/materialish-progress)
- PhysicsLayout (https://github.com/Jawnnypoo/PhysicsLayout)
- Material Letter Icon (https://github.com/IvBaranov/MaterialLetterIcon)
- RecyclerViewSquire (https://github.com/AlexKGwyn/RecyclerViewSquire)
- RobotoTextView (https://github.com/johnkil/Android-RobotoTextView)
- GitDiffTextView (https://github.com/alorma/GitDiffTextView)
- MaterialDateTimePicker (https://github.com/wdullaer/MaterialDateTimePicker)
Loading
Loading
Loading
Loading
@@ -15,12 +15,11 @@ import android.view.MenuItem;
import android.view.View;
import android.widget.TextView;
 
import com.commit451.easycallback.EasyCallback;
import com.commit451.gitlab.App;
import com.commit451.gitlab.R;
import com.commit451.gitlab.adapter.DividerItemDecoration;
import com.commit451.gitlab.adapter.MilestoneIssuesAdapter;
import com.commit451.easycallback.EasyCallback;
import com.commit451.gitlab.api.GitLabFactory;
import com.commit451.gitlab.event.MilestoneChangedEvent;
import com.commit451.gitlab.model.api.Issue;
import com.commit451.gitlab.model.api.Milestone;
Loading
Loading
@@ -76,8 +75,8 @@ public class MilestoneActivity extends BaseActivity {
EventReceiver mEventReceiver;
 
@OnClick(R.id.add)
void onAddClick() {
Navigator.navigateToAddIssue(MilestoneActivity.this, null, mProject);
void onAddClick(View fab) {
Navigator.navigateToAddIssue(MilestoneActivity.this, fab, mProject);
}
 
@OnClick(R.id.edit)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment