# EasySwipeMenuLayout **Repository Path**: HarmonyOS-tpc/EasySwipeMenuLayout ## Basic Information - **Project Name**: EasySwipeMenuLayout - **Description**: A sliding menu library not just for ListContainer, but all views. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-04-15 - **Last Updated**: 2023-04-17 ## Categories & Tags **Categories**: harmonyos-layout **Tags**: None ## README ## EasySwipeMenuLayout ## Introduction A sliding menu library not just for ListContainer, but all views. ### Features Supported: - 1、Two-way sliding - 2、Support any View - 3、By id binding layout, more freedom ## Usage Instruction - User can create component as EasySwipeMenuLayout at the top-level of layout file. This will add swipe functionality to this component. ``` ``` ## Installation instruction ### Method 1: Generate the .har package through the library and add the .har package to the libs folder. 1. Add the .har package to the lib folder. 2. Add the following code to the gradle of the entry: implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) ### Method 2: ```gradle allprojects { repositories { mavenCentral() } } dependencies { implementation 'io.openharmony.tpc.thirdlib:EasySwipeMenuLayout:1.0.1' } ```