material3-navigation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.stefanoq21</groupId> <artifactId>material3-navigation</artifactId> <version>1.0.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.github.stefanoq21</groupId> <artifactId>material3-navigation</artifactId> <version>1.0.3</version> <packaging>aar</packaging> <name>material3-navigation</name> <description>This library provides a navigation solution for Compose projects using Material3 BottomSheets.</description> <url>https://github.com/stefanoq21/BottomSheetNavigator3/</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>stefanoq21</id> <name>Stefano Natali</name> <email>stefanoq21@gmail.com</email> <url>https://github.com/stefanoq21/</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/stefanoq21/BottomSheetNavigator3.git</connection> <developerConnection>scm:git:ssh://git@github.com/stefanoq21/BottomSheetNavigator3.git</developerConnection> <url>https://github.com/stefanoq21/BottomSheetNavigator3/</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>androidx.compose</groupId> <artifactId>compose-bom</artifactId> <version>2025.05.00</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>2.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>androidx.compose.material3</groupId> <artifactId>material3</artifactId> <version>1.3.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.navigation</groupId> <artifactId>navigation-compose</artifactId> <version>2.9.0</version> <scope>runtime</scope> </dependency> </dependencies> </project>