• Stars
    star
    156
  • Rank 238,488 (Top 5 %)
  • Language
    C#
  • Created over 11 years ago
  • Updated almost 10 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Starter project for Mobile projects at GitHub

Starter Project for Mobile Applications

This project is a base project for cross-platform mobile applications that should help you get started quicker without hours of right-clicking.

Are you using Xamarin.Forms?

Before you run the "Get Started" code, run the following command which is a branch configured to use ReactiveUI-XamForms and creates Xamarin Forms-based views.

git reset --hard xam-forms

How do I get started?

git clone https://github.com/paulcbetts/starter-mobile
script/create NameOfMyNewProject
git remote set-url origin https://github.com/MyUserName/NameOfMyNewProject
git push -u origin master

NOTE: Don't use a '.' in any of your project names, iOS gets hella upset. Yes, I think it'd look way better than '-' too.

How do I build the project

script/cibuild

What's the project structure here?

  1. Starter-Android: The main Android app project.
  2. Starter-iOS: The main iOS (both iPhone and iPad) application project.
  3. Starter-Core: Code that is shared between the two projects. This project also has Xamarin.Forms set up and ready to go.

Philosophy

How does this MVVM Thing Workโ„ข?

The idea is, that we want to create our models (i.e. stuff we save to disk and stuff we send over the network) and ViewModels (a class that represents the behavior of an app screen, by describing how properties are related to each other) in the Starter-Core library.

Ideally, the vast majority of our app will live in this library, because everything we don't put in here we have to write twice, and is super hard to test.

In this app, what we mean by "View" is, on iOS is a UIViewController and friends, and on Android is usually an Activity. Both of these classes are hard to test, so we want them to be as dumb as possible.

Here are some things that belong in Starter-Core:

  1. Anything related to sending stuff to the network
  2. Anything related to loading/saving user's data
  3. All of our ViewModel classes (i.e. for every screen in the app, we'll have a ViewModel class)

So, it's important that Starter-Core not do platform-specific things - if you're talking about CGRects in a Starter-Core class, you're Doing It Wrongโ„ข.

Here are some things that will end up in Starter-{Platform}

  1. The app startup code (i.e. AppDelegate)
  2. A ViewController or Activity for every screen in the app.

"How Do I?"

How do I add a new screen to the app?

  1. Create a new ViewModel class in Starter-Core and derive it from ReactiveObject. Put all of the interesting code in here - calling REST APIs, validating stuff, you name it!
  2. Walk over to the iOS project, create a new "Universal View Controller", copy paste some of the stuff from TestViewController (like the base class ReactiveViewController, and that boilerplate ViewModel property at the bottom)
  3. In the Android project, create a new Activity, same deal around the boilerplate there too.

How do I do interesting stuff in the core library when I can't access UI elements or other stuff??

You should define an Interface, then let the platforms implement. Here's how you could do this with an example UI action (note that this isn't the best way to do this, it's just an example):

First, define an interface in the Core project:

public interface IAlertHelper
{
    void ShowAlert(string message);
}

Then, in your ViewModel, you should make it a constructor parameter - we write it this way so that if we want to replace it with a dummy version in a test runner, it's easy to do:

public TestViewModel(IAlertHelper alertHelper = null)
{
    alertHelper = alertHelper ?? Locator.Current.GetService<IAlertHelper>();
    alertHelper.ShowAlert("Wat it do.");
}

Now, in the iOS and Android projects, you can register an implementation of this interface:

public class AppleAlertHelper : IAlertHelper
{
    public void ShowAlert(string message)
    {
        /* ... */
    }
}

and in your AppDelegate, you can register it:

public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
    Locator.CurrentMutable.RegisterConstant(new AppleAlertHelper(), typeof(IAlertHelper));
}

More Repositories

1

ModernHttpClient

HttpClient implementations that use platform-native HTTP clients for ๐Ÿš€
C#
661
star
2

SassAndCoffee

SassAndCoffee adds support in ASP.NET MVC to (you guessed it!) Sass/SCSS and CoffeeScript
JavaScript
199
star
3

spawn-rx

Observable and Promise versions of child_process.spawn
TypeScript
136
star
4

xvfb-maybe

Run an executable under xvfb-run, but only when needed
JavaScript
133
star
5

grunt-build-atom-shell

Grunt task to build Electron and rebuild node modules
CoffeeScript
122
star
6

LinqToAwait

A Task-based LINQ designed to work with async/await
C#
113
star
7

node-system-idle-time

Node module to get system-idle-time, fork with Linux support
C++
101
star
8

XamarinEvolve2014

App Repo for "Building Apps the GitHub Way"
C#
91
star
9

SaveAllTheTime

SaveAllTheTime makes it so you never commit files to Git without saving ever again
C#
73
star
10

AkavacheExplorer

A utility to poke around in Akavache caches
C#
68
star
11

squirrel-flutter

Build installers for your Flutter applications with Squirrel
Dart
56
star
12

PerMonitorDpi

Enable Windows 8.1+ Per-Monitor DPI support for Desktop WPF Apps
C#
51
star
13

ssh-agent-relay

Make your WSL installation use your Windows SSH Agent
Shell
38
star
14

atom-twitch

Atom plugin for Live Coding
JavaScript
34
star
15

RunscopeEverything

An Xposed module that will rewrite all web requests on Android and point them to Runscope
Java
27
star
16

midi-mixer-wavexlr

A Wave Link plugin for MIDI Mixer
JavaScript
23
star
17

ReactiveUI.Sample

Sample 3.0โ„ข
C#
20
star
18

starter-sample

ReactiveUI + Akavache + Splat Sample
C#
20
star
19

commands

Commands - a React Hooks library for writing async code
TypeScript
20
star
20

BigNerdIOS-MonoDevelop

Big Nerd Ranch's iOS book, but in MonoDevelop
C#
18
star
21

typechat-cli

A command-line wrapper around TypeChat - invoke OpenAI or Ollama with a specific JS schema
TypeScript
16
star
22

XamarinRxDemo

Java
14
star
23

xamarin-dep-rebuild

A hack to rebuild all of the libraries we use in Xamarin apps
Shell
13
star
24

sirene

Dart
13
star
25

CaliburnMicro

My hacks on top of Caliburn Micro
C#
12
star
26

OneTrueCSharpStyle

The One True C# Style
12
star
27

electron-vue-sample

Vue 2.0 single-file components + electron-compile
JavaScript
12
star
28

libcef

Mirror of CEF3
C++
12
star
29

reactiveui

This Repo Is Dead, you want https://github.com/reactiveui/reactiveui
C#
11
star
30

aluqard

GraphQL + Flutter Hooks
Dart
11
star
31

OkHttp-Xamarin

Xamarin bindings for squareup/okhttp
C#
11
star
32

when

Observe JavaScript objects with RxJS
TypeScript
10
star
33

trickline

A Fucking Fast Slack Data Model
TypeScript
10
star
34

peasant

The simplest CI server that could possibly work
C#
9
star
35

PhotoDispatcher

A site to send Eye-Fi photos to multiple sites via an iPhone site
Ruby
8
star
36

Shotclock

A NuGet package to encourage you to create small commits
C#
8
star
37

rxjs-serial-subscription

RxJS 5.x version of SerialSubscription
JavaScript
8
star
38

RxUIInterfaceToVM

Hack code to use Roslyn + Mustache to codegen ReactiveUI ViewModels
C#
7
star
39

github-emoji-switcher

A Chrome Extension that switches old-and-busted Apple Emojis into new and โœจ Shiny โœจ Hangouts emoji! ๐Ÿš€
JavaScript
7
star
40

vcachefs

A media caching filesystem written using FUSE
C
6
star
41

blogstrap

A GitHub Pages-based starter template for your blog
JavaScript
6
star
42

Shroom

Java
6
star
43

Tasks

A Ruby library to parse Taskpaper and other todo list formats
Ruby
5
star
44

component-store-nupkg-builder

A set of scripts to build Xamarin Component Store shim packages
Ruby
5
star
45

vue-pwa-typescript

Vue 2.5's PWA template using the new Babel 7.x TypeScript preset
JavaScript
5
star
46

AFNetworking-Xamarin

Xamarin AFNetworking binding, based on thefactory/AFNetworking-Sharp
C#
5
star
47

GistForVS

A VSIX extension that adds the ability to create Gists from Visual Studio
C#
5
star
48

InstallQueuer

A Windows app to queue up several MSIs to install in the background
C#
5
star
49

rdio-play-here

List all of your running machines and make Rdio play on any of them
JavaScript
5
star
50

zapped

A small utility to add XServer's Zap to Windows and OS X
C
4
star
51

chromeapp-materialdesign

Demo for Chrome App + Material Design + AngularJS
JavaScript
4
star
52

RxUIBlog

All of the RxUI blog posts and some tooling to create a PDF / ePub version
4
star
53

GameShare

A website to organize small groups to borrow video games
Ruby
4
star
54

yikes

An automatic way to convert videos and put them on your iPod
C
4
star
55

camploco

Camp Lakota Merit Badge Site
JavaScript
4
star
56

ravendb

A linq enabled document database for .NET
C#
3
star
57

windows-terminal-theme-sync

VS Code extension to sync color themes with Windows Terminal
TypeScript
3
star
58

mongodbfs

A FUSE filesystem over MongoDB's GridFS
C
3
star
59

ModernCommonLogging

Common.Logging for .NET 4.0 / SL4 / WP7
3
star
60

pinguine-wsl

Utility to improve WSL
3
star
61

ReactiveXaml

This project has been renamed to ReactiveUI - check it out below!
3
star
62

poolsuite-androidtv

The literal bare minimum to get poolsuite onto my heckin TV
Dart
3
star
63

desktop-analytics

Common Analytics and Reporting
C#
3
star
64

foo

3
star
65

slack-all-langs

Sample code to post a message in every language to Slack
JavaScript
3
star
66

Estelle

A command-line music reorganization app
C++
3
star
67

groupme-ios-sdk

A GroupMe client library for iOS devices
Objective-C
3
star
68

lithium

A Reactive API for Home Assistant
TypeScript
2
star
69

xpaulbettsx.github.com

Ruby
2
star
70

electron-sample

Sample app using the CLI
CoffeeScript
2
star
71

play-wp8

Dummy project, ignore this
C#
2
star
72

NSync

NSync
2
star
73

gformat

A GNOME disk formatting utility I wrote a billion years ago
C
2
star
74

password2

password with offline support
JavaScript
2
star
75

channels-web

Web client for Channels
TypeScript
2
star
76

ReactiveUI_5.99.3-beta-WP8

Repro repo for issue with the ReactiveUI 5.99.3-beta NuGet package
C#
2
star
77

RxUI_BindingFailure

Demonstrates the combobox selected item binding failure
C#
2
star
78

Istoria

My life in code
Ruby
2
star
79

HerokuClickonceTest

This is not a thing.
Ruby
2
star
80

Malcolm

An application that helps you be more productive
C#
2
star
81

LeeMe.Mobile

So you can be about that life.
C#
2
star
82

saveallthetime-atom

SaveAllTheTime makes it so you never commit files to Git without saving ever again
CoffeeScript
1
star
83

OBSKeyboardMute

Mute your clackety keyboard in OBS
C#
1
star
84

glibc-legal-notice

An npm package whose license metadata describes your linking to glibc
1
star
85

ShroomServer

1
star
86

marie

keep your house clutter-free!
TypeScript
1
star
87

esdoc-plugin-async-to-sync

Auto-documents your sync methods using the async versions
JavaScript
1
star
88

when-flutter

Dart
1
star
89

flutter-actions

Action Hooks, a Flutter Hook for building asynchronous commands
Dart
1
star
90

debug-electron

It's debug, but electron-friendly
JavaScript
1
star
91

timeout-cli

GNU timeout but cross-platform also with missing features
JavaScript
1
star
92

toilet-paper-cheater

it does.
TypeScript
1
star
93

slime

An Atom plugin to communicate with your inferiors (processes)
CoffeeScript
1
star
94

symlink-test

Ignore me
1
star