Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Muuri | 10,363 | 22 | 18 | a month ago | 22 | July 09, 2021 | 100 | mit | JavaScript | |
Infinite responsive, sortable, filterable and draggable layouts | ||||||||||
Vue Grid Layout | 6,373 | 104 | 154 | 3 days ago | 42 | August 03, 2022 | 224 | mit | JavaScript | |
A draggable and resizable grid layout, for Vue.js. | ||||||||||
Gridster.js | 6,150 | 205 | 18 | 4 years ago | 1 | June 04, 2015 | 378 | mit | JavaScript | |
gridster.js is a jQuery plugin that makes building intuitive draggable layouts from elements spanning multiple columns | ||||||||||
Packery | 3,812 | 179 | 34 | 2 years ago | 12 | June 29, 2018 | 47 | JavaScript | ||
:bento: Gapless, draggable grid layouts | ||||||||||
Svelte Grid | 776 | 2 | 3 | 4 months ago | 69 | November 21, 2021 | 45 | mit | Svelte | |
A responsive, draggable and resizable grid layout, for Svelte. | ||||||||||
Dragact | 715 | 4 years ago | 31 | mit | TypeScript | |||||
a dragger layout system with React style . | ||||||||||
React Collapse Pane | 197 | 3 months ago | 23 | May 21, 2022 | 30 | mit | TypeScript | |||
The splittable, draggable, collapsible panel layout library 🎉 | ||||||||||
Floatingkeyboard | 193 | 5 years ago | 1 | other | Java | |||||
A Draggable and Floating KeyboardView for android that several EditText's can register to use it. | ||||||||||
Vue Smart Widget | 146 | 4 | 5 months ago | 25 | September 19, 2022 | 12 | mit | JavaScript | ||
🗃️Smart widget is a flexible and extensible content container component for Vue2.x / Vue3.x in Next branch. | ||||||||||
Indockablewindow | 113 | 9 years ago | 1 | March 24, 2015 | other | Objective-C | ||||
A window to which other views can be "docked" to and separated into their own windows |
Consider using BottomSheetDialogFragment from the Android Design package instead
SlidingUpPanel is a port of AndroidSlidingUpPanel to Xamarin.Android.
Add an awesome draggable panel that slides up from either the bottom or top of your screen. Use it to show more details, reveal music player controls or whatever you want. This type of panel is also used in apps such as Google Music and Rdio.
Get it in the Xamarin Component store
Or through NuGet
> Install-Package SlidingUpPanel
This library uses Android Support v4, and it is tested on Android 2.2 and above.
To use it, add the component and in your layout simply wrap your layouts with cheesebaron.slidinguppanel.SlidingUpPanelLayout
. It supports two children. The first child is your content layout. The second child is your layout for the sliding up panel. Both children should have their height set to
match_parent
.
<cheesebaron.slidinguppanel.SlidingUpPanelLayout
android:id="@+id/sliding_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="bottom">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Your main content inside here -->
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Your main sliding panel inside here -->
</RelativeLayout>
</cheesebaron.slidinguppanel.SlidingUpPanelLayout>
This project is licensed under the Apache 2.0 License.