Skip to content
View malihehmoradi's full-sized avatar
โ˜•
โœจLooking for new challengesโœจ
โ˜•
โœจLooking for new challengesโœจ
Block or Report

Block or report malihehmoradi

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
malihehmoradi/README.md

Pinned Loading

  1. android-course android-course Public

    Android Cource Contents

    3 1

  2. compose-samples compose-samples Public

    Kotlin

  3. map-instance-app map-instance-app Public

    An Android instance app for working with Google Map, Kotlin

    Kotlin 3

  4. d3-app d3-app Public

    A sample app for using SceneView in your app

    Kotlin

  5. Get last ambient temperature from an... Get last ambient temperature from android device with temperature sensor.
    1
    
                  
    2
    public class SensorActivity extends Activity implements SensorEventListener {
    3
        private final SensorManager mSensorManager;
    4
        private final Sensor mTempSensor;
    5
        
  6. TextAlign.Justify doesn't work with ... TextAlign.Justify doesn't work with Persian text in Text composable, just put it in a CompositionLocalProvider with LayoutDirection.Rtl for working. #android #compose #kotlin
    1
    
                  
    2
                CompositionLocalProvider(LocalLayoutDirection provides LayoutDirection.Rtl) {
    3
                    Text(
    4
                        text = stringResource(id = R.string.contactUs),
    5
                        textAlign = TextAlign.Justify,