A simple demo app with three screens: a list screen, a read-only detail screen, and an editable detail screen.
Перейти к файлу
Joe Sauve 0e9ad5e363 Update .gitignore 2016-01-13 19:03:32 -06:00
Customers Removed old commented out code 2016-01-13 18:41:58 -06:00
Droid Exclude Google Maps API key for Android (debug). 2016-01-13 17:14:35 -06:00
Screenshots Added screenshots 2016-01-13 17:11:44 -06:00
iOS Enabled IPAs in iOS project 2016-01-12 17:28:03 -06:00
.gitignore Update .gitignore 2016-01-13 19:03:32 -06:00
Customers.sln Switched to in-app mocked data source instead of Azure. Added some button icons. Updated a color for higher contrast. 2016-01-06 11:10:25 -08:00
Faker.Portable.dll Added FlatHash.com avatar images to the Faker.Net.Portable project and included the release DLL of it. Will use NuGet when the upstream maintainer approves PR. 2016-01-06 17:26:30 -08:00
LICENSE Initial commit 2016-01-04 16:49:49 -08:00
README.md Create README.md 2016-01-13 17:24:51 -06:00

README.md

app-customers

A simple Xamarin.Forms demo app with three screens:

  • a list screen
  • a read-only detail screen
  • an editable detail screen

Includes integrations such as:

  • getting directions
  • making calls
  • sending text messages
  • email composition

Google Maps API key (Android)

For Android, you'll need to obtain a Google Maps API key: https://developer.xamarin.com/guides/android/platform_features/maps_and_location/maps/obtaining_a_google_maps_api_key/

Insert it in ~/Droid/Properties/AndroidManifest.xml:

<application android:label="Customers" android:theme="@style/CustomersTheme">\
  ...
  <meta-data android:name="com.google.android.geo.API_KEY" android:value="[YOUR API KEY HERE]" />
  ...
</application>

Screenshots