-
Updated
Dec 29, 2021 - Java
#
componentization
Here are 26 public repositories matching this topic...
业界首个支持渐进式组件化改造的Android组件化开源框架,支持跨进程调用。Componentize your android project gradually.
-
Updated
May 14, 2021 - Java
good first issue
Good for newcomers
-
Updated
May 28, 2020 - Groovy
Star wars sample android project showcasing the use of View components for rendering UI in Fragments and Activities. Uses Android Jetpack, clean architecture with MVI (Uni-directional data flow), dagger hilt, and kotlin coroutines with StateFlow
redux
android
kotlin
flow
redux-store
architecture
coroutines
clean-architecture
jetpack
netflix
viewmodel
android-studio
mvi
kotlin-coroutines
componentization
mvi-clean-architecture
mvi-android
jetpack-android
kotlin-gradle-dsl
dagger-hilt
-
Updated
Nov 21, 2021 - Kotlin
sp(a)是一个SPI(Service Provider Interface)框架, 他具有跨模块(无任何依赖关系的模块)创建对象的能力。使用简单、功能强大、性能损耗极低,是组件化开发、模块解耦合的不二之选。由于sp(a)灵活的配置能力,使得它很容易扩展出更多的跨模块通信能力,如组件热插拔、路由、事件分发、rpc通信等。如果您正在使用组件化开发,或者您有多项目需要做差异化处理,强烈推荐您使用sp(a)。
-
Updated
Feb 19, 2022 - Java
随着业务的发展 App 开发技术也越来越成熟,对开发者来说 App 代码量也迅速地增长到一个数量级。对于如何架构 App 已经每个开发者面临的实际问题。好的架构可以提高开发者的效率,降低维护成本。
-
Updated
Nov 5, 2017 - Java
一个基于shell + gradle开发的效率工具,用来优化模块化/组件化分仓后带来的编译和调试痛点,提升开发效率
-
Updated
Jul 27, 2021 - Groovy
HTML componentization, specialized for Alpine JS.
-
Updated
Feb 27, 2021
SPI for Android componentization.
-
Updated
Aug 23, 2021 - Kotlin
Android 接口式路由 / A routing framework to assist with Android Componentization. it's turns your route API into a Java interface.
-
Updated
Jun 19, 2020 - Java
IRouter for android componentization
-
Updated
Aug 23, 2021 - Java
Android组件化架构中用于各个组件在Application启动时进行初始化操作的框架
-
Updated
Dec 24, 2020 - Groovy
Componentized Input for Ionic/Angular.
components
angular
validation
ionic
component
material
material-design
input
material-ui
angular-material
inputs
input-mask
ionic-framework
concept
mask
input-validation
input-output
masking
componentization
angular-material-design
-
Updated
Mar 2, 2022 - TypeScript
This is the BootCamp Rocketseat challenge number 9, an application was created in ReactJS and Typescript using various technologies and concepts such as Operations CRUD, Hooks (useCallBack, useEffect, useState) Typescript, typing, Componentization, properties, Modal, Styled-components, State management, Icons with FeatherIcon, Axios and requests with the Fake API rest and Unitary tests.
react
hooks
crud
typescript
state-management
styled-components
test
icons
modal
typing
axios
properties
componentization
usestate
useeffect
usecallback
-
Updated
Jan 13, 2021 - TypeScript
Contabilizei's Meetup about Componentization using Vue with JSX
-
Updated
Sep 17, 2018 - JavaScript
Dagger 与 DynamicFeature 并用 的一个 demo.
-
Updated
Mar 20, 2019 - Kotlin
DESAFIO: Componentização e divisão de tarefas no React JS.
-
Updated
Oct 6, 2021 - TypeScript
Essa será uma aplicação onde o seu principal objetivo é refatorar uma página para listagem de filmes de acordo com gênero.
-
Updated
Jul 31, 2021 - TypeScript
Rocketseat Bootcamp - Ignite - React - Challenge 02 - Refatoração
-
Updated
Oct 18, 2021 - TypeScript
Project based on EmilStenstrom/django-components, but this includes a command line for easy set up, component creation and static files compiling and minifying.
-
Updated
Jul 23, 2021 - Python
Improve this page
Add a description, image, and links to the componentization topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the componentization topic, visit your repo's landing page and select "manage topics."
举个例子:
@Nullable public static String getString(@NonNull Intent intent, @NonNull String key, @Nullable String defaultValue) { return getString(intent.getExtras(), key, defaultValue); }
getString的已经有了defaultValue,然而还是Nullable,整个方法返回的也是Nullable,那么这个默认值感觉没有什么意义,也没有节省任何非空的判断