# ohosFlowLayout **Repository Path**: HarmonyOS-tpc/ohosFlowLayout ## Basic Information - **Project Name**: ohosFlowLayout - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-17 - **Last Updated**: 2023-04-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ohosFlowLayout ohosFlowLayout : ohosFlowLayout, is much more like a, but it can automatically separate the widgets wrapped in it into multiple lines just like the water flow. # Usage Instructions 1.Change flayout:horizontal_spacing attribute to required horizontal spacing. 2.Change flayout:vertical_spacing attribute to required vertical spacing. Add the `com.liangfeizc.flowlayout.FlowLayout` to your layout XML file. ``` ``` Add required button's to FlowLayout # Installation Instructions 1.For using ohosFlowlayout module in sample application,include the below library dependency to generate hap/flowlayout.har. Modify entry build.gradle as below : ``` dependencies { implementation project(path: ':flowlayout') } ``` 2.For using ohosFlowLayout in separate application, make sure to add the "flowlayout.har" in libs folder of "entry" module. Modify entry build.gradle as below : ``` dependencies { implementation fileTree(dir: 'libs', include: ['*.har']) } ``` 3.For using ohosFlowLayout from the remote repository, add the below dependency in "entry" build.gradle. Modify entry build.gradle as below : ``` dependencies { implementation 'io.openharmony.tpc.thirdlib:ohosFlowLayout:1.0.0' } ```