Skip to content
This repository has been archived by the owner on Nov 7, 2020. It is now read-only.

smallstoneapps/about-window

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About Window npm (scoped) MIT License Build Status

Pebble library for easily adding an About window to your app.

As of January 2017, this library is officially abandoned.

Installation

You must be using Pebble SDK 3.12 or newer to use this library.

To install the package to your app, use the pebble tool:

pebble package install @smallstoneapps/about-window

Usage

#include <pebble.h>
#include <@smallstoneapps/about-window/about-window.h>

static void prv_init(void) {
  about_window_init();
  about_window_set_title("About Window Demo");
  about_window_set_text("Lorem ipsum dolor sit amet, an aliquid convenire honestatis eos. Eos ad tale homero reprimique. Te option mediocrem mel, ius no quodsi tincidunt. Ad sea aliquid ullamcorper.\n\nPertinax similique philosophia no has, ad tempor fastidii pri. Ex sit postea expetendis. Phaedrum consulatu quaerendum te his, pro an doctus delenit. Nec feugiat prodesset ea, ei his tollit discere facilisis.");
  about_window_show(true);
}

static void prv_deinit(void) {
  about_window_deinit();
}

int main(void) {
  prv_init();
  app_event_loop();
  prv_deinit();
}

About

[abandoned] Pebble library for easily adding an About window to your app.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published