├── .gitignore ├── LICENSE ├── README.md ├── composableSheep ├── build.gradle.kts └── src │ └── commonMain │ └── kotlin │ └── dev │ └── nstv │ └── composablesheep │ └── library │ ├── ComposableSheep.kt │ ├── LoadingSheep.kt │ ├── model │ ├── FluffStyle.kt │ ├── Leg.kt │ └── Sheep.kt │ ├── parts │ ├── DrawEyes.kt │ ├── DrawFluff.kt │ ├── DrawGlasses.kt │ ├── DrawHead.kt │ └── DrawLegs.kt │ └── util │ ├── BasicGuidelines.kt │ ├── Dimens.kt │ ├── GeometryMaths.kt │ ├── ListExtensions.kt │ └── SheepColor.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/README.md -------------------------------------------------------------------------------- /composableSheep/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/build.gradle.kts -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/ComposableSheep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/ComposableSheep.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/LoadingSheep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/LoadingSheep.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/model/FluffStyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/model/FluffStyle.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/model/Leg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/model/Leg.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/model/Sheep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/model/Sheep.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/parts/DrawEyes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/parts/DrawEyes.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/parts/DrawFluff.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/parts/DrawFluff.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/parts/DrawGlasses.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/parts/DrawGlasses.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/parts/DrawHead.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/parts/DrawHead.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/parts/DrawLegs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/parts/DrawLegs.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/util/BasicGuidelines.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/util/BasicGuidelines.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/util/Dimens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/util/Dimens.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/util/GeometryMaths.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/util/GeometryMaths.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/util/ListExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/util/ListExtensions.kt -------------------------------------------------------------------------------- /composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/util/SheepColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/composableSheep/src/commonMain/kotlin/dev/nstv/composablesheep/library/util/SheepColor.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicole-terc/composable-sheep-lib/HEAD/settings.gradle.kts --------------------------------------------------------------------------------