Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Masonry | 15,477 | 1,999 | 210 | 2 years ago | 13 | July 04, 2018 | 50 | HTML | ||
:love_hotel: Cascading grid layout plugin | ||||||||||
Dashboards | 10,892 | 2 | 3 | 2 years ago | 4 | April 08, 2019 | 2 | mit | HTML | |
Responsive dashboard templates 📊✨ | ||||||||||
Muuri | 10,363 | 22 | 26 | 7 months ago | 22 | July 09, 2021 | 100 | mit | JavaScript | |
Infinite responsive, sortable, filterable and draggable layouts | ||||||||||
Rebass | 7,914 | 744 | 382 | 4 months ago | 109 | October 28, 2019 | 98 | mit | JavaScript | |
:atom_symbol: React primitive UI components built with styled-system. | ||||||||||
Vue Grid Layout | 6,399 | 104 | 292 | 6 months ago | 42 | August 03, 2022 | 225 | mit | JavaScript | |
A draggable and resizable grid layout, for Vue.js. | ||||||||||
Flex Layout | 5,917 | 5,089 | 1,102 | 7 months ago | 45 | January 24, 2023 | 50 | mit | TypeScript | |
Provides HTML UI layout for Angular applications; using Flexbox and a Responsive API | ||||||||||
Split | 5,778 | 248 | 166 | 4 months ago | 43 | January 07, 2022 | 162 | mit | JavaScript | |
Unopinionated utilities for resizeable split views | ||||||||||
Twoway View | 5,299 | 89 | 7 years ago | 5 | October 30, 2014 | 168 | Java | |||
[DEPRECATED] RecyclerView made simple | ||||||||||
Cssgridgenerator | 4,577 | 8 months ago | 39 | mit | Vue | |||||
🧮 Generate basic CSS Grid code to make dynamic layouts! | ||||||||||
Awesome Css Learning | 3,178 | a month ago | 8 | other | ||||||
A tiny list limited to the best CSS Learning Resources |
RecyclerView made simple.
The new API is still under heavy development but you can try it now via Maven Central snapshots.
Gradle:
repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies {
compile 'org.lucasr.twowayview:core:1.0.0-SNAPSHOT@aar'
compile 'org.lucasr.twowayview:layouts:1.0.0-SNAPSHOT@aar'
}
TwoWayView used to be a standalone AdapterView implementation. You can grab it here from Maven Central as follows.
Grab via Maven:
<dependency>
<groupId>org.lucasr.twowayview</groupId>
<artifactId>twowayview</artifactId>
<version>0.1.4</version>
</dependency>
Gradle:
compile 'org.lucasr.twowayview:twowayview:0.1.4'
If you are using ProGuard add the following line to the rules:
-keep class org.lucasr.twowayview.** { *; }
File new issues to discuss specific aspects of the API and to propose new features.
Copyright (C) 2013 Lucas Rocha
TwoWayView's code is based on bits and pieces of Android's
AbsListView, Listview, and StaggeredGridView.
Copyright (C) 2012 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.