All Projects → hansemannn → Ti.splashview

hansemannn / Ti.splashview

Licence: other
💦 Support for the splash-screen library CBZSplashView in Appcelerator Titanium.

Labels

Projects that are alternatives of or similar to Ti.splashview

Clickhouse Driver
ClickHouse Python Driver with native interface support
Stars: ✭ 562 (+2710%)
Mutual labels:  native
Nativeshare
NativeShare是一个整合了各大移动端浏览器调用原生分享的插件
Stars: ✭ 751 (+3655%)
Mutual labels:  native
Ti.urlsession
Use the NSURLSession API to download and upload files in Titanium.
Stars: ✭ 7 (-65%)
Mutual labels:  native
Vue Nodegui
Build performant, native and cross-platform desktop applications with native Vue + powerful CSS like styling.🚀
Stars: ✭ 575 (+2775%)
Mutual labels:  native
Sticky State
StickyState is a high performant module making native position:sticky statefull and polyfilling the missing sticky browser feature
Stars: ✭ 692 (+3360%)
Mutual labels:  native
Slim.js
Fast & Robust Front-End Micro-framework based on modern standards
Stars: ✭ 789 (+3845%)
Mutual labels:  native
Camerakit Android
Library for Android Camera 1 and 2 APIs. Massively increase stability and reliability of photo and video capture on all Android devices.
Stars: ✭ 5,131 (+25555%)
Mutual labels:  native
Originr
Species origin data from the web in R
Stars: ✭ 13 (-35%)
Mutual labels:  native
React Native Canvas
A Canvas component for React Native
Stars: ✭ 736 (+3580%)
Mutual labels:  native
React Native Geolocation Service
React native geolocation service for iOS and android
Stars: ✭ 934 (+4570%)
Mutual labels:  native
Sauron Native
Truly cross platform, truly native. multiple backend GUI for rust
Stars: ✭ 587 (+2835%)
Mutual labels:  native
Proton
Purely native and extensible rich text editor for iOS and macOS Catalyst apps
Stars: ✭ 685 (+3325%)
Mutual labels:  native
Savannakit
A high-performance, protocol oriented, framework for creating native IDEs for iOS and macOS, written in Swift
Stars: ✭ 816 (+3980%)
Mutual labels:  native
Klock
Multiplatform Date and time library for Kotlin
Stars: ✭ 569 (+2745%)
Mutual labels:  native
Ti.spotify
🎶 Support for the Spotify iOS SDK in the Titanium Mobile SDK.
Stars: ✭ 9 (-55%)
Mutual labels:  native
Dart native
Write iOS&Android Code using Dart. This package liberates you from redundant glue code and low performance of Flutter Channel.
Stars: ✭ 564 (+2720%)
Mutual labels:  native
Delphimvcframework
DMVCFramework (for short) is a popular and powerful framework for web solution in Delphi. Supports RESTful and JSON-RPC APIs development.
Stars: ✭ 761 (+3705%)
Mutual labels:  native
Fake Jni
An implementation of the JNI and JVMTI with support for direct interaction between natively registered classes and JVM objects.
Stars: ✭ 20 (+0%)
Mutual labels:  native
Native Windows Gui
A light windows GUI toolkit for rust
Stars: ✭ 872 (+4260%)
Mutual labels:  native
Xtd forms
Modern c++17 library to create native gui for Microsoft Windows, Apple macOS and Linux.
Stars: ✭ 25 (+25%)
Mutual labels:  native

Ti.SplashView

Contact

Support for the Twitter-like splash-screen library CBZSplashView in Titanium. Thanks to @callumboddy for that awesome library!

Twitter Example

Example

var Splash = require('ti.splashview');

var win = Ti.UI.createWindow({
    backgroundColor: 'yellow'
});

var splashView = Splash.createSplashView({
    image: "appc-logo.png",
    fillColor: "blue"
});

win.addEventListener('focus', function() {
    setTimeout(function() {
        splashView.startAnimation();
    },1000);
});

win.add(splashView);
win.open();

Author

Hans Knoechel (@hansemannnn / Web)

License

Apache 2.0

Contributing

Code contributions are greatly appreciated, please submit a new pull request!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].