• Stars
    star
    31
  • Rank 792,433 (Top 17 %)
  • Language
    Dart
  • License
    Other
  • Created over 11 years ago
  • Updated over 9 years ago

Reviews

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

Repository Details

A bridge implementation of the Apache Cordova mobile framework(a.k.a. PhoneGap) in Dart. It enables developers to access native facilities of multiple mobile platforms using the HTML, CSS, and Dart.

#Rikulo Gap

Rikulo Gap is a bridge implementation of the Apache Cordova mobile framework (a.k.a. PhoneGap) in Dart. It enables developers to access native facilities of multiple mobile platforms using the HTML, CSS, and Dart.

Rikulo Gap is distributed under the Apache 2.0 License.

##Install from Dart Pub Repository

Add this to your pubspec.yaml (or create it):

dependencies:
  rikulo_gap: ">=0.6.0 <0.7.0"

##Usage

Everything start from enabling your device accessiblity:

import 'package:rikulo_gap/device.dart';
import 'package:rikulo_gap/accelerometer.dart';

//At a regular interval, get the acceleration along the x, y, and z axis.
void accessAccelerometer() {
  accelerometer.watchAcceleration(
    (Acceleration acc) {
      print("t:${acc.timestamp}, x:${acc.x}, y:${acc.y}, z:${acc.z}");
    },
    () => print("Fail to get acceleration."),
    new AccelerometerOptions(frequency: 1000)
  );
}

void main() {
  Device.init()
  .then((Device device) {
     accessAccelerometer();
  })
  .catchError((ex, st) {
     print("Failed: $ex, $st");
  });
}

For more information, please refer to Building Native Mobile Application.

##Install from Github for Bleeding Edge Stuff

To install stuff that is still in development, add this to your pubspec.yam:

dependencies:
  rikulo_gap:
    git: git://github.com/rikulo/gap.git

For more information, please refer to Pub: Dependencies.

###Fork Rikulo Gap

If you'd like to contribute back to the core, you can fork this repository and send us a pull request, when it is ready.

Please be aware that one of Rikulo's design goals is to keep the sphere of API as neat and consistency as possible. Strong enhancement always demands greater consensus.

If you are new to Git or GitHub, please read this guide first.

##Who Uses

  • Quire - a simple, collaborative, multi-level task management tool.

More Repositories

1

socket.io-client-dart

socket.io-client-dart: Dartlang port of socket.io-client https://github.com/socketio/socket.io-client
Dart
630
star
2

stream

Lightweight Dart web server. Features: request routing, filtering, template engine, WebSocket, MVC design pattern, and file-based static resources.
Dart
232
star
3

ui

Rikulo UI is a cross-platform framework for creating amazing Web and mobile applications in Dart and HTML 5.
Dart
208
star
4

socket.io-dart

socket.io-dart: Dartlang port of socket.io https://github.com/socketio/socket.io
Dart
120
star
5

bootjack

Twitter Bootstrap ported in Dart.
Dart
88
star
6

dquery

jQuery ported in Dart.
Dart
52
star
7

stomp

STOMP Dart Client for communicating with STOMP-compliant messaging servers.
Dart
30
star
8

entity

A simple ORM for Relational and NoSQL database
Dart
23
star
9

bootjack-datepicker

Date picker for Bootjack
Dart
17
star
10

commons

Common reusable Dart classes and utilities.
Dart
12
star
11

ripple

Lightweight Dart messaging server; supporting STOMP messaging protocol.
Dart
11
star
12

security

A lightweight and highly customizable authentication and access-control framework for Rikulo Stream.
Dart
10
star
13

couchclient

Couchbase Dart Client Library
Dart
10
star
14

el

Rikulo EL (Expression Language) is an implementation of the Unified Expression Language specification plus some enhancements for and in Dart.
Dart
10
star
15

highcharts

Dart
9
star
16

memcached-client

Memcached Dart Client Library
Dart
9
star
17

todoMVC

A todoMVC implementation written with Rikulo and in Dart
CSS
8
star
18

rikulo-docs

Rikulo Documentation
Java
6
star
19

uxl

Rikulo UXL (User-interface eXtensible Language) is a markup language allowing developers to define user-interface in XML, and then compile and debug it in Dart.
Dart
6
star
20

socket_io_common

Socket.io common parser library for Dart 2
Dart
5
star
21

diff-match-patch

A port of Google Diff Match and Patch library to Dart
Dart
4
star
22

orm

[Suspended] Rikulo ORM is an object-relational mapping (ORM) library for Dart language.
Dart
4
star
23

jison2dart

Generate Dart parsers using Jison - Bison/Yacc in JavaScript
Dart
4
star
24

xml-crypto

Xml digital signature library for Dart
Dart
3
star
25

gapi

Rikulo GAPI is a Dart bridge to those frequently used on-line JavaScript services provided by Google.
Dart
3
star
26

geoip

Rikulo GeoIP is a Dart bridge to the on-line geo-ip JavaScript service provided by smart-ip.net.
Dart
3
star
27

rikulo-blog

Rikulo Blogs
JavaScript
3
star
28

yapi

Rikulo YAPI is a Dart bridge to those frequently used on-line JavaScript services provided by Yahoo Inc.
Dart
2
star
29

eul

[Deprecated] Rikulo EUL (Embeddable User-interface Language) is a markup language allowing developers to define user-interface in HTML 5 and XML. EUL is embeddable in Dart code or HTML pages.
Dart
2
star
30

access

A simple database utility
Dart
2
star
31

rikulo-website

The website for Rikulo
CSS
1
star