Block or Report
Block or report eymar
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned Loading
-
-
DrVectorAndroid Public
This IDEA plugin helps to deal with vector drawable files. It fixes such float declaration: .128 to 0.128, 1.225.443 to 1.225 0.443, 1.30-.25 to 1.30 -0.25
-
-
WateringPlantApp Public
The app allows to connect to the Watering device via Bluetooth and setup the watering preferences
Kotlin
-
android-guidelines Public
Forked from ribot/android-guidelines
Architecture and code guidelines we use at ribot when developing for Android
298 contributions in the last year
Contribution activity
November 2021
Created 20 commits in 2 repositories
Created 2 repositories
- eymar/template-compose-dom Kotlin
- eymar/serialization-and-compose Kotlin
Created a pull request in JetBrains/compose-jb that received 3 comments
web (breaking change): move CSSUnit convertors functions and CSS operations (on units) to their new scopes
The intention is to avoid having these functions on top level. They are usually used within specific scopes, so it makes sense to limit the number …
Opened 29 other pull requests in 4 repositories
JetBrains/compose-jb
3
open
9
merged
- web (breaking change): make constructors of CSSSelectors classes internal
- web (breaking change): make some functions internal
-
web (breaking change): move
combineandfeaturefunctions to GenericStyleSheetBuilder scope (in CSSMediaRule.kt) - web (breaking change): move top level functions for css selectors to new SelectorsScope
-
web: add
What's includedsection into root README.md for web - web: add test-utils tutorial
- web: remove Options for event listeners
-
web: add
inputmodeglobal attribute - deprecate compose.web.web-widgets in source code and gradle plugin
- web: fix and update compiler plugin test cases
- web: update compiler plugin test cases to make them runnable
- web: add tests for onChange event for checkbox and radiobutton
JetBrains/skiko
9
merged
1
closed
- Common TextBlob Builder
- clean up debug prints in tests
- TextBlob common
- Text blob common
- TextLine common implementations
- add commonMain/cpp for common bindings (js,native,jvm)
- Shaping options and Shaper interop
- use ManagedString._nMake from toInterop(String)
- add Pattern and Matcher actual implementation for js and native
- Add toInterop for FontFeature.kt and update bindings accordingly
JetBrains/androidx
2
open
4
merged
- Compose for js wa noncapturing lambdas
- compose plugin: fix compilation issue for k/js - 1306
- workaround default composable lambdas with typed parameters (for k/js and k/native)
- fix default values in expect composable functions (cherry-pick from CL 1893977)
- compiler plugin fix cherry-pick: Correctly record capture scope of local functions
- Release/1.0 and kotlin1.6
sandwwraith/serialization-and-compose
1
merged
Reviewed 21 pull requests in 2 repositories
JetBrains/skiko
15 pull requests
- Skiko events update.
- Commonize FontCollection::familyNames
- Commonize Typeface::familyNames
- Assert close enough refactoring
- Commonize TextStyle
- Implement Picture for native
- TextBlob common
- TextLine common implementations
- [js] Correct external definitions for HEAP*-family - otherwise they are unreachable
- withResult functions accept InteropScopeContext functions
- Shaping options and Shaper interop
- use ManagedString._nMake from toInterop(String)
- add Pattern and Matcher actual implementation for js and native
- Implement native methods of SVGSVG and SVGDOM
- Implement Path methods
JetBrains/compose-jb
6 pull requests
- web (breaking change): make constructors of CSSSelectors classes internal
-
web: add
What's includedsection into root README.md for web -
Throw exception for
String + CSSSelectorwithselfcases. - Introduce webWidgetsDeprecationMessage
- deprecate compose.web.web-widgets in source code and gradle plugin
- Fix css selectors: combine, sibling
Created an issue in JetBrains/compose-jb that received 3 comments
Compiler: value in destructuring declaration of MutableState doesn't get updated
var (foo, setFoo) = mutableStateOf(0) setFoo(123) // set foo == 123 // expected, but false foo == 0 // actual, but should be 123 it works like this…