beprogressive

Results 3 issues of beprogressive

Can you please add night theme to editor? Or more functions to customize it, for example - allow to select css file.

xml: ``` ``` code: ``` tv = TutorialView.create(getActivity(), TutorialView.RightToLeft, TutorialView.CenterRight, Rl.findViewById(R.id.web_view)); tv.show(); ``` gesture always places in top left corner of the view.

``` kotlin fun getDir(path: String) { var result = client.files().listFolderBuilder(path) .withLimit(500) .withIncludeDeleted(true) .withRecursive(false) .start() while (true) { if (!result.hasMore) { startLongPoll(result.cursor) break } result = client.files().listFolderContinue(cursor) } } fun startLongPoll(cursor:...