Thanks for the awesome library.
I'm having 10 steps in my app. Current layout only shows 4 steps. I'm assigning currentcount via onCreate(). But I tried smoothScrollToStep to 6. But it is not scrolling to 6th step...
StatusViewScroller mStatus = findViewById(R.id.status);
List<String> statusArray = Arrays.asList(getResources().getStringArray(R.array.indiv));
mStatus.getStatusView().setStatusList(statusArray);
mStatus.getStatusView().setStepCount(statusArray.size());
mStatus.getStatusView().setCurrentCount(6);
mStatus.smoothScrollToStep(6);