Sana Ebadi

Results 5 comments of Sana Ebadi

``` geolocation: ^0.2.1 environment: sdk: ">=2.2.0

Just use `implementation 'com.google.android.gms:play-services:12.0.1'` Hope this solved your problem. Thank you!

@DreierF tnx I used ` implementation 'io.github.dreierf:material-intro-screen:0.0.6'` and solve my problem

Dear Just Try it : ``` dependencies: geolocation: git: url: https://github.com/shehabic/geolocation ``` be OKay

``` fun ImageView.loadImage(url: String?) { load(url) { transformations(RoundedCornersTransformation(context.getDp(R.dimen.radius_image))).placeholder( R.drawable.profile_avatar_logo ).error(R.drawable.profile_avatar_logo) } } fun ImageView.loadCircleImage(url: String?) { load(url) { transformations(CircleCropTransformation()).placeholder(R.drawable.profile_avatar_logo) .error(R.drawable.profile_avatar_logo) } } fun ImageView.loadImage(id: Int) { load(id) { transformations(RoundedCornersTransformation(context.getDp(R.dimen.radius_image))).placeholder( R.drawable.profile_avatar_logo...