{"id":24078729,"url":"https://github.com/chasakisd/xamarin.forms-coordinator-workaround","last_synced_at":"2025-04-30T12:42:56.276Z","repository":{"id":97969414,"uuid":"125100203","full_name":"ChasakisD/Xamarin.Forms-Coordinator-Workaround","owner":"ChasakisD","description":"A Xamarin.Forms (Android Only) Implementation of CoordinatorLayout with CollapsingToolbar","archived":false,"fork":false,"pushed_at":"2018-04-05T19:03:22.000Z","size":1001,"stargazers_count":14,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-22T00:42:41.441Z","etag":null,"topics":["collapsingtoolbarlayout","coordinator-layout","coordinatorlayout","xamarin","xamarin-android","xamarin-forms"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ChasakisD.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-13T18:56:27.000Z","updated_at":"2022-06-16T00:12:43.000Z","dependencies_parsed_at":"2023-06-14T06:31:08.836Z","dependency_job_id":null,"html_url":"https://github.com/ChasakisD/Xamarin.Forms-Coordinator-Workaround","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChasakisD%2FXamarin.Forms-Coordinator-Workaround","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChasakisD%2FXamarin.Forms-Coordinator-Workaround/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChasakisD%2FXamarin.Forms-Coordinator-Workaround/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChasakisD%2FXamarin.Forms-Coordinator-Workaround/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ChasakisD","download_url":"https://codeload.github.com/ChasakisD/Xamarin.Forms-Coordinator-Workaround/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251702525,"owners_count":21630031,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["collapsingtoolbarlayout","coordinator-layout","coordinatorlayout","xamarin","xamarin-android","xamarin-forms"],"created_at":"2025-01-09T21:56:31.813Z","updated_at":"2025-04-30T12:42:56.244Z","avatar_url":"https://github.com/ChasakisD.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Xamarin.Forms-Coordinator-Workaround\nA Xamarin.Forms (Android Only) Implementation of CoordinatorLayout with CollapsingToolbar\n\n[![NuGet version](https://badge.fury.io/nu/XamarinForms.CoordinatorLayout.Android.svg)](https://badge.fury.io/nu/XamarinForms.CoordinatorLayout.Android)\n\n# Documentation\n\n![Alt Text](https://media.giphy.com/media/1gUWeJoxIm66WXaaqr/giphy.gif)\n\n## Installation\n\n#### Xamarin.Android\nInitialize the renderer below the Xamarin.Forms.Init\n```cs\nglobal::Xamarin.Forms.Forms.Init(this, bundle);\nCoordinatorWorkaround.Droid.Renderers.Forms.Init();\n\n```\n\n#### Xamarin.Forms (.NetStandard)\nCreate the page as normal page and navigate to it\n```cs\nvar page = new CoordinatorPage\n{\n    Title = \"Finally Worked Monkeys!\",\n    NestedContent = //the instance of my ContentPage here,\n    ImageSource = \"my image source here\",\n    StatusBarColor = Color.DarkMagenta,\n    ToolbarBackgroundColor = Color.DimGray,\n    CoordinatorBackgroundColor = Color.Green,\n    CoordinatorScrimBackgroundColor = Color.Red,\n    FloatingButtonImageSource = \"my image source here\",\n    FloatingButtonBackgroundColor = Color.DarkRed,\n    FloatingButtonCommand = new Command(async () =\u003e await DisplayAlert(\"hehe\", \"hehe\", \"ok\"), () =\u003e true),\n    ChangeStatusBarColor = true,\n    HasBackButton = true\n};\n```\n\n## Bindable Properties\n| Property | Type | Description |\n|------------------|---------|-------------|\n| `NestedContent` | `ContentPage` | The content of the NestedScrollView |\n| `ImageSource` | `ImageSource` | The Source of the image that is used inside the CollapsingToolbar |\n| `ToolbarBackgroundColor` | `Xamarin.Forms.Color` | The background color of the toolbar |\n| `ChangeStatusBarColor` | `bool` | Type of bool, if you want to change the color of the status bar |\n| `StatusBarColor` | `Xamarin.Forms.Color` | The background color of the status bar *(only if ChangeStatusBarColor is set to **true**)* |\n| `CoordinatorScrimBackgroundColor` | `Xamarin.Forms.Color` | The color of the scrim effect in the collapsing toolbar |\n| `CoordinatorBackgroundColor` | `Xamarin.Forms.Color` | The background color of the coordinator layout (the background of the image source) |\n| `HasBackButton` | `bool` | If you want the toolbar have the back button |\n| `IsFloatingButtonEnabled` | `bool` | If you want the floating action button to be enabled |\n| `FloatingButtonImageSource` | `ImageSource` | The image source of the icon of the FAB *(only if IsFloatingButtonEnabled is set to **true**)* |\n| `FloatingButtonBackgroundColor` | `Xamarin.Forms.Color` | The background color FAB *(only if IsFloatingButtonEnabled is set to **true**)* |\n| `FloatingButtonCommand` | `ICommand` | The command that will execute when the user presses the FAB *(only if IsFloatingButtonEnabled is set to **true**)* |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchasakisd%2Fxamarin.forms-coordinator-workaround","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchasakisd%2Fxamarin.forms-coordinator-workaround","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchasakisd%2Fxamarin.forms-coordinator-workaround/lists"}