Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
4e4d17c
fix resource position for the view, if given resource drawable width …
Aug 11, 2023
e6fb736
move start margin for arrow logic to function
Aug 14, 2023
8392536
fix context bug
Aug 14, 2023
c5c2c02
Merge pull request #31 from Trendyol/CustomResourcePositionForFocused…
Muhammedguven Aug 15, 2023
19b0571
Update description text type to CharSequence
ertugrulkaragoz1 Sep 7, 2023
7319f31
Merge pull request #32 from Trendyol/change-description-text-type
ertugrulkaragoz Sep 8, 2023
fa8d667
Remove bottom arrow resource
ertugrulkaragoz1 Sep 8, 2023
a5d5139
Rotate arrow head
ertugrulkaragoz1 Sep 8, 2023
f5e927e
Update tests
ertugrulkaragoz1 Sep 8, 2023
b49ec2d
Update readme
ertugrulkaragoz1 Sep 8, 2023
6c9438c
Merge pull request #33 from Trendyol/rotate-arrow-head
ertugrulkaragoz Sep 11, 2023
2ed40b3
Update readme
ertugrulkaragoz1 Sep 11, 2023
55051a3
Fix bottom arrow preview
ertugrulkaragoz1 Sep 19, 2023
2e592b0
Add isArrowVisible parameter
ertugrulkaragoz1 Sep 19, 2023
8770caa
Update arrow visibility logic
ertugrulkaragoz1 Sep 19, 2023
713aba1
Add arrow visibility test
ertugrulkaragoz1 Sep 19, 2023
9b52c81
Update readme
ertugrulkaragoz1 Sep 20, 2023
66a4cf8
Merge pull request #34 from Trendyol/set-arrow-visibility
ertugrulkaragoz Sep 20, 2023
c2eddf4
fix slidable content scale & height problems
Jun 13, 2024
cd51eea
Merge pull request #35 from Trendyol/slidable_content_scale_problems
sumrukarss Jun 13, 2024
e1801dc
Fix calculation arrowStartMargin for RTL
Feb 19, 2025
06f01b0
Merge pull request #39 from Trendyol/FixShowCaseStartMarginForRTL
onuralpavci Feb 19, 2025
da1f905
Add custom font support to title & description
onuralpavci Apr 30, 2025
eec1d22
Remove redundant null check
onuralpavci Apr 30, 2025
a5e66e4
Update README.md
onuralpavci Apr 30, 2025
35144f2
Merge pull request #40 from Trendyol/AddCustomFontSupport
onuralpavci Apr 30, 2025
d900d60
Add cancellable from scroll flag
May 28, 2025
6ee8d4d
Merge pull request #41 from Trendyol/AddCancellableFromScroll
onuralpavci May 28, 2025
84bd59e
Update Gradle and sdk versions
Jun 11, 2025
7bc8a9e
Fix highlighting problem on API 35
Jun 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 61 additions & 49 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'com.android.tools.build:gradle:8.10.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
android.defaults.buildfeatures.buildconfig=true
android.nonFinalResIds=false
android.nonTransitiveRClass=false
android.useAndroidX=true
org.gradle.jvmargs=-Xmx1536m
# When configured, Gradle will run in incubating parallel mode.
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
284 changes: 175 additions & 109 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading