Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fanmixco/xamarin-onemorefabmenu
Another floating action button menu with expand/collapse behavior.
https://github.com/fanmixco/xamarin-onemorefabmenu
androidx androidx-library floatingactionbutton material-design material-ui menu nuget nuget-package xamarin xamarin-android xamarin-binding xamarin-onemorefabmenu
Last synced: 3 months ago
JSON representation
Another floating action button menu with expand/collapse behavior.
- Host: GitHub
- URL: https://github.com/fanmixco/xamarin-onemorefabmenu
- Owner: FANMixco
- License: apache-2.0
- Created: 2020-07-23T14:04:22.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-09T18:32:19.000Z (7 months ago)
- Last Synced: 2024-10-06T10:24:11.123Z (3 months ago)
- Topics: androidx, androidx-library, floatingactionbutton, material-design, material-ui, menu, nuget, nuget-package, xamarin, xamarin-android, xamarin-binding, xamarin-onemorefabmenu
- Language: C#
- Homepage: https://fanmixco.github.io/Xamarin-OneMoreFabMenu/
- Size: 74.2 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Xamarin-OneMoreFabMenu
Another floating action button menu with expand/collapse behavior. This Xamarin solution is based on André Servidoni's version: https://github.com/DeKoServidoni/OMFM
![Example gif](https://raw.githubusercontent.com/DeKoServidoni/OMFM/master/images/example_v1.0.3.gif)
## How to use
### **Basic example:**
**XML:**
```xml
```
**Menu:**
**omfm_content_options.xml**
```xml
```
**C#:**
```csharp
private OneMoreFabMenu FabButtonMenu { get; set; }public partial class MainActivity : AppCompatActivity, OneMoreFabMenu.IOptionsClick
{
protected override async void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
FabButtonMenu = FindViewById(Resource.Id.fabMenu);
FabButtonMenu.SetOptionsClick(this);
}
}public void OnOptionClick(Integer p0)
{
switch (Convert.ToInt32(p0))
{
case Resource.Id.option1:
break;
case Resource.Id.option2:
break;
case Resource.Id.option3:
break;
}
}
```## Download
| Package |Latest Release|
|:----------|:------------:|
|**Xamarin-OneMoreFabMenu**|[![NuGet Badge Xamarin-OneMoreFabMenu](https://buildstats.info/nuget/Xamarin-OneMoreFabMenu)](https://www.nuget.org/packages/Xamarin-OneMoreFabMenu/)|## Licence
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.
### Follow me at:
| LinkedIn |YouTube|Amazon|Goodreads|Instagram|Cyber Prophets|Sharing Your Stories|
|:----------|:------------:|:------------:|:------------:|:------------:|:------------:|:------------:|
|[![LinkedIn](https://i.sstatic.net/idQWu.png)](https://bit.ly/lfanmixco)|[![YouTube](https://i.sstatic.net/CFPMR.png)](https://youtube.com/c/FedericoNavarrete)|[![Amazon](https://i.sstatic.net/NFOeE.png)](https://www.amazon.com/Federico-Navarrete/e/B08NJTXQRV)|[![Goodreads](https://i.sstatic.net/oBk0g.jpg)](https://www.goodreads.com/author/show/21125413.Federico_Navarrete)|[![Instagram](https://i.sstatic.net/PIfqY.png)](https://www.instagram.com/federico_the_consultant)|[![RedCircle Podcast](https://i.sstatic.net/4XICF.png)](https://redcircle.com/shows/cyber-prophets)|[![RedCircle Podcast](https://i.sstatic.net/4XICF.png)](https://redcircle.com/shows/sharing-your-stories)|