OnBoarding

This commit is contained in:
Benoit Marty 2022-11-09 16:35:33 +01:00
parent 4114ec4efc
commit 978975342e
62 changed files with 535 additions and 92 deletions

View file

@ -9,3 +9,5 @@ class StableCharSequence(val charSequence: CharSequence) {
override fun hashCode() = hash
override fun equals(other: Any?) = other is StableCharSequence && other.hash == hash
}
fun CharSequence.toStableCharSequence() = StableCharSequence(this)

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<integer name="rtl_x_multiplier">-1</integer>
<integer name="rtl_mirror_flip">180</integer>
</resources>

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<integer name="rtl_x_multiplier">1</integer>
<integer name="rtl_mirror_flip">0</integer>
</resources>