Skip to content

Instantly share code, notes, and snippets.

View graco911's full-sized avatar
:octocat:
Android Developer

Carlos Graniel Córdova graco911

:octocat:
Android Developer
  • Protec
  • México
View GitHub Profile
To Use FontAwesome
1. Download Free FontAwesome fonts from website, grab the "Web" fonts. URL:https://fontawesome.com/download
2. Unzip and copy the font file into both Android and IOS projects. Verify build action.
a. For IOS add entry to info.plist at bottom before </dict> element.
<key>UIAppFonts</key>
<array>
<string>fa-solid-900.ttf</string>
</array>
@graco911
graco911 / bprop.snippet
Created January 17, 2020 03:44 — forked from parth7676/bprop.snippet
Bindable Property Snippet for Xamarin Forms.
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
<Title>bprop</Title>
<Author>Microsoft Corporation</Author>
<Description>Code snippet for an automatically implemented $name$Property
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- google's material design colours from
http://www.google.com/design/spec/style/color.html#color-ui-color-palette -->
<!--reds-->
<color name="md_red_50">#FFEBEE</color>
<color name="md_red_100">#FFCDD2</color>
<color name="md_red_200">#EF9A9A</color>
@graco911
graco911 / layout.xml
Created January 31, 2019 00:02 — forked from isfaaghyth/layout.xml
AppBar Scrolling with Flexible Space and content overlapping
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:orientation="vertical">