├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .idea ├── .name ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── kotlinc.xml └── vcs.xml ├── LICENSE ├── README.md ├── apivalidation.build.gradle ├── detekt.build.gradle ├── docs ├── .nojekyll ├── 404.html ├── articles │ ├── index.html │ ├── index.xml │ └── page │ │ └── 1 │ │ └── index.html ├── css │ └── bundled.min.css ├── documentation │ ├── mvflow │ │ ├── alltypes │ │ │ └── index.html │ │ ├── index-outline.html │ │ ├── index.html │ │ ├── net.pedroloureiro.mvflow │ │ │ ├── -effect-sender │ │ │ │ ├── index.html │ │ │ │ ├── offer.html │ │ │ │ └── send.html │ │ │ ├── -handler-with-effects.html │ │ │ ├── -handler.html │ │ │ ├── -logger.html │ │ │ ├── -m-v-flow-with-effects │ │ │ │ ├── index.html │ │ │ │ └── observe-effects.html │ │ │ ├── -m-v-flow.html │ │ │ ├── -m-v-flow │ │ │ │ ├── -view │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── render.html │ │ │ │ ├── add-external-actions.html │ │ │ │ ├── index.html │ │ │ │ └── take-view.html │ │ │ ├── -reducer.html │ │ │ └── index.html │ │ └── package-list │ └── style.css ├── google0372b959e959bc23.html ├── implementing-your-view-actions-flow │ └── index.html ├── index.html ├── index.xml └── sitemap.xml ├── dokka-samples └── MVFlowSamples.kt ├── dokka.build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── hugo.build.gradle ├── kotlin.build.gradle ├── kotlinter.build.gradle ├── mvflow-core ├── api │ └── mvflow-core.api ├── build.gradle └── src │ ├── main │ └── kotlin │ │ └── net │ │ └── pedroloureiro │ │ └── mvflow │ │ └── MVFlow.kt │ └── test │ └── kotlin │ └── net │ └── pedroloureiro │ └── mvflow │ ├── MVFlowCounterHelper.kt │ ├── MVFlowCounterTestTemplate.kt │ ├── MVFlowTest.kt │ ├── MVFlowWithEffectsTest.kt │ └── ViewFake.kt ├── publishing.build.gradle ├── samples └── android-app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ ├── androidTest │ └── kotlin │ │ └── net │ │ └── pedroloureiro │ │ └── mvflow │ │ └── samples │ │ └── android │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── net │ │ │ └── pedroloureiro │ │ │ └── mvflow │ │ │ └── samples │ │ │ └── android │ │ │ └── screens │ │ │ ├── counter │ │ │ ├── CounterMVFlow.kt │ │ │ ├── SimpleCounterActivity.kt │ │ │ └── SimpleCounterViewModel.kt │ │ │ ├── dummydialog │ │ │ └── DummyDialogActivity.kt │ │ │ ├── home │ │ │ └── HomeActivity.kt │ │ │ └── lifecycle │ │ │ ├── LifecycleActivity.kt │ │ │ └── LifecycleMVFlow.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── counter_activity.xml │ │ ├── dummy_dialog_activity.xml │ │ ├── home_activity.xml │ │ └── lifecycle_activity.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── kotlin │ └── net │ └── pedroloureiro │ └── mvflow │ └── samples │ └── android │ ├── CollectingEffectSender.kt │ ├── ExampleUnitTest.kt │ └── screens │ └── counter │ ├── CounterMVFlowHandlerTest.kt │ └── CounterMVlowReducerTest.kt ├── settings.gradle ├── signing.build.gradle ├── todo.md ├── utils.build.gradle └── website └── hugo-src ├── archetypes └── default.md ├── config.toml ├── content ├── _index.md └── articles │ ├── implementing-your-view-actions-flow.md │ └── introduction-to-mvi.md ├── layouts └── index.html ├── static ├── .nojekyll ├── documentation │ ├── mvflow │ │ ├── alltypes │ │ │ └── index.html │ │ ├── index-outline.html │ │ ├── index.html │ │ ├── net.pedroloureiro.mvflow │ │ │ ├── -effect-sender │ │ │ │ ├── index.html │ │ │ │ ├── offer.html │ │ │ │ └── send.html │ │ │ ├── -handler-with-effects.html │ │ │ ├── -handler.html │ │ │ ├── -logger.html │ │ │ ├── -m-v-flow-with-effects │ │ │ │ ├── index.html │ │ │ │ └── observe-effects.html │ │ │ ├── -m-v-flow.html │ │ │ ├── -m-v-flow │ │ │ │ ├── -view │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── render.html │ │ │ │ ├── add-external-actions.html │ │ │ │ ├── index.html │ │ │ │ └── take-view.html │ │ │ ├── -reducer.html │ │ │ └── index.html │ │ └── package-list │ └── style.css └── google0372b959e959bc23.html └── themes └── mypurecss ├── LICENSE ├── archetypes └── default.md ├── assets └── css │ ├── github.css │ ├── header.css │ ├── jetbrains-mono.css │ ├── mystyles.css │ ├── section.css │ └── sidebar.css ├── layouts ├── 404.html ├── _default │ ├── baseof.html │ ├── list.html │ ├── rss.xml │ └── single.html ├── index.html ├── partials │ ├── analytics_footer.html │ ├── code_fences_footer.html │ ├── footer.html │ ├── head.html │ ├── header.html │ └── toc_scrollspy.html └── shortcodes │ └── custom_div.html └── theme.toml /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | mvflow -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/README.md -------------------------------------------------------------------------------- /apivalidation.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/apivalidation.build.gradle -------------------------------------------------------------------------------- /detekt.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/detekt.build.gradle -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/articles/index.xml -------------------------------------------------------------------------------- /docs/articles/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/articles/page/1/index.html -------------------------------------------------------------------------------- /docs/css/bundled.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/css/bundled.min.css -------------------------------------------------------------------------------- /docs/documentation/mvflow/alltypes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/alltypes/index.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/index-outline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/index-outline.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/index.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-effect-sender/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-effect-sender/index.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-effect-sender/offer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-effect-sender/offer.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-effect-sender/send.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-effect-sender/send.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-handler-with-effects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-handler-with-effects.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-handler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-handler.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-logger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-logger.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow-with-effects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow-with-effects/index.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow-with-effects/observe-effects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow-with-effects/observe-effects.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/-view/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/-view/actions.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/-view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/-view/index.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/-view/render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/-view/render.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/add-external-actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/add-external-actions.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/index.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/take-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/take-view.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/-reducer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/-reducer.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/net.pedroloureiro.mvflow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/net.pedroloureiro.mvflow/index.html -------------------------------------------------------------------------------- /docs/documentation/mvflow/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/mvflow/package-list -------------------------------------------------------------------------------- /docs/documentation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/documentation/style.css -------------------------------------------------------------------------------- /docs/google0372b959e959bc23.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/google0372b959e959bc23.html -------------------------------------------------------------------------------- /docs/implementing-your-view-actions-flow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/implementing-your-view-actions-flow/index.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/index.xml -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /dokka-samples/MVFlowSamples.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/dokka-samples/MVFlowSamples.kt -------------------------------------------------------------------------------- /dokka.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/dokka.build.gradle -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/gradlew.bat -------------------------------------------------------------------------------- /hugo.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/hugo.build.gradle -------------------------------------------------------------------------------- /kotlin.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/kotlin.build.gradle -------------------------------------------------------------------------------- /kotlinter.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/kotlinter.build.gradle -------------------------------------------------------------------------------- /mvflow-core/api/mvflow-core.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/mvflow-core/api/mvflow-core.api -------------------------------------------------------------------------------- /mvflow-core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/mvflow-core/build.gradle -------------------------------------------------------------------------------- /mvflow-core/src/main/kotlin/net/pedroloureiro/mvflow/MVFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/mvflow-core/src/main/kotlin/net/pedroloureiro/mvflow/MVFlow.kt -------------------------------------------------------------------------------- /mvflow-core/src/test/kotlin/net/pedroloureiro/mvflow/MVFlowCounterHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/mvflow-core/src/test/kotlin/net/pedroloureiro/mvflow/MVFlowCounterHelper.kt -------------------------------------------------------------------------------- /mvflow-core/src/test/kotlin/net/pedroloureiro/mvflow/MVFlowCounterTestTemplate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/mvflow-core/src/test/kotlin/net/pedroloureiro/mvflow/MVFlowCounterTestTemplate.kt -------------------------------------------------------------------------------- /mvflow-core/src/test/kotlin/net/pedroloureiro/mvflow/MVFlowTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/mvflow-core/src/test/kotlin/net/pedroloureiro/mvflow/MVFlowTest.kt -------------------------------------------------------------------------------- /mvflow-core/src/test/kotlin/net/pedroloureiro/mvflow/MVFlowWithEffectsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/mvflow-core/src/test/kotlin/net/pedroloureiro/mvflow/MVFlowWithEffectsTest.kt -------------------------------------------------------------------------------- /mvflow-core/src/test/kotlin/net/pedroloureiro/mvflow/ViewFake.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/mvflow-core/src/test/kotlin/net/pedroloureiro/mvflow/ViewFake.kt -------------------------------------------------------------------------------- /publishing.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/publishing.build.gradle -------------------------------------------------------------------------------- /samples/android-app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/build.gradle -------------------------------------------------------------------------------- /samples/android-app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/proguard-rules.pro -------------------------------------------------------------------------------- /samples/android-app/src/androidTest/kotlin/net/pedroloureiro/mvflow/samples/android/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/androidTest/kotlin/net/pedroloureiro/mvflow/samples/android/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /samples/android-app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/counter/CounterMVFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/counter/CounterMVFlow.kt -------------------------------------------------------------------------------- /samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/counter/SimpleCounterActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/counter/SimpleCounterActivity.kt -------------------------------------------------------------------------------- /samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/counter/SimpleCounterViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/counter/SimpleCounterViewModel.kt -------------------------------------------------------------------------------- /samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/dummydialog/DummyDialogActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/dummydialog/DummyDialogActivity.kt -------------------------------------------------------------------------------- /samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/home/HomeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/home/HomeActivity.kt -------------------------------------------------------------------------------- /samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/lifecycle/LifecycleActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/lifecycle/LifecycleActivity.kt -------------------------------------------------------------------------------- /samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/lifecycle/LifecycleMVFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/kotlin/net/pedroloureiro/mvflow/samples/android/screens/lifecycle/LifecycleMVFlow.kt -------------------------------------------------------------------------------- /samples/android-app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /samples/android-app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /samples/android-app/src/main/res/layout/counter_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/layout/counter_activity.xml -------------------------------------------------------------------------------- /samples/android-app/src/main/res/layout/dummy_dialog_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/layout/dummy_dialog_activity.xml -------------------------------------------------------------------------------- /samples/android-app/src/main/res/layout/home_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/layout/home_activity.xml -------------------------------------------------------------------------------- /samples/android-app/src/main/res/layout/lifecycle_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/layout/lifecycle_activity.xml -------------------------------------------------------------------------------- /samples/android-app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /samples/android-app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /samples/android-app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/android-app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /samples/android-app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/android-app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /samples/android-app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/android-app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /samples/android-app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/android-app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /samples/android-app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/android-app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /samples/android-app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /samples/android-app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /samples/android-app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /samples/android-app/src/test/kotlin/net/pedroloureiro/mvflow/samples/android/CollectingEffectSender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/test/kotlin/net/pedroloureiro/mvflow/samples/android/CollectingEffectSender.kt -------------------------------------------------------------------------------- /samples/android-app/src/test/kotlin/net/pedroloureiro/mvflow/samples/android/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/test/kotlin/net/pedroloureiro/mvflow/samples/android/ExampleUnitTest.kt -------------------------------------------------------------------------------- /samples/android-app/src/test/kotlin/net/pedroloureiro/mvflow/samples/android/screens/counter/CounterMVFlowHandlerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/test/kotlin/net/pedroloureiro/mvflow/samples/android/screens/counter/CounterMVFlowHandlerTest.kt -------------------------------------------------------------------------------- /samples/android-app/src/test/kotlin/net/pedroloureiro/mvflow/samples/android/screens/counter/CounterMVlowReducerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/samples/android-app/src/test/kotlin/net/pedroloureiro/mvflow/samples/android/screens/counter/CounterMVlowReducerTest.kt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/settings.gradle -------------------------------------------------------------------------------- /signing.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/signing.build.gradle -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/todo.md -------------------------------------------------------------------------------- /utils.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/utils.build.gradle -------------------------------------------------------------------------------- /website/hugo-src/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/archetypes/default.md -------------------------------------------------------------------------------- /website/hugo-src/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/config.toml -------------------------------------------------------------------------------- /website/hugo-src/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/content/_index.md -------------------------------------------------------------------------------- /website/hugo-src/content/articles/implementing-your-view-actions-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/content/articles/implementing-your-view-actions-flow.md -------------------------------------------------------------------------------- /website/hugo-src/content/articles/introduction-to-mvi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/content/articles/introduction-to-mvi.md -------------------------------------------------------------------------------- /website/hugo-src/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/layouts/index.html -------------------------------------------------------------------------------- /website/hugo-src/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/alltypes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/alltypes/index.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/index-outline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/index-outline.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/index.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-effect-sender/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-effect-sender/index.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-effect-sender/offer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-effect-sender/offer.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-effect-sender/send.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-effect-sender/send.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-handler-with-effects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-handler-with-effects.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-handler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-handler.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-logger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-logger.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow-with-effects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow-with-effects/index.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow-with-effects/observe-effects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow-with-effects/observe-effects.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/-view/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/-view/actions.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/-view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/-view/index.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/-view/render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/-view/render.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/add-external-actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/add-external-actions.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/index.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/take-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-m-v-flow/take-view.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-reducer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/-reducer.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/net.pedroloureiro.mvflow/index.html -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/mvflow/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/mvflow/package-list -------------------------------------------------------------------------------- /website/hugo-src/static/documentation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/documentation/style.css -------------------------------------------------------------------------------- /website/hugo-src/static/google0372b959e959bc23.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/static/google0372b959e959bc23.html -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/LICENSE -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/assets/css/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/assets/css/github.css -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/assets/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/assets/css/header.css -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/assets/css/jetbrains-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/assets/css/jetbrains-mono.css -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/assets/css/mystyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/assets/css/mystyles.css -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/assets/css/section.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/assets/css/section.css -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/assets/css/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/assets/css/sidebar.css -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/layouts/404.html -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/layouts/_default/baseof.html -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/layouts/_default/list.html -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/layouts/_default/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/layouts/_default/rss.xml -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/layouts/_default/single.html -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/layouts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/layouts/partials/analytics_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/layouts/partials/analytics_footer.html -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/layouts/partials/code_fences_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/layouts/partials/code_fences_footer.html -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/layouts/partials/footer.html -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/layouts/partials/head.html -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/layouts/partials/header.html -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/layouts/partials/toc_scrollspy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/layouts/partials/toc_scrollspy.html -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/layouts/shortcodes/custom_div.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/layouts/shortcodes/custom_div.html -------------------------------------------------------------------------------- /website/hugo-src/themes/mypurecss/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroql/mvflow/HEAD/website/hugo-src/themes/mypurecss/theme.toml --------------------------------------------------------------------------------