Skip to content

Instantly share code, notes, and snippets.

View entdark's full-sized avatar
🤔
thinking

entdark

🤔
thinking
View GitHub Profile
@VitaliyBelyaev
VitaliyBelyaev / example_theme.json
Created July 7, 2023 15:01
Python script for generating colors.xml and ligth/dark themes.xml from Material 3 json theme file generated by Figma Material Theme Builder Plugin
{
"seed": "#6750A4",
"description": "TYPE: CUSTOM",
"coreColors": {
"primary": "#6750A4",
"neutralVariant": "#938F99"
},
"schemes": {
"light": {
"primary": "#6750A4",
@ivmirx
ivmirx / MvxBottomNavigationItemChangedBinding.cs
Last active June 25, 2022 14:09
Using the new Android's BottomNavigationView with MvvmCross 6
// a custom binding for Droid to get "app:MvxBind" in root_view working
using System;
using Android.Support.Design.Widget;
using MvvmCross.Binding;
using MvvmCross.Commands;
using MvvmCross.Platforms.Android.Binding.Target;
namespace YourApp.Droid.Bindings
{