steipete /
Aspects
Delightful, simple library for aspect oriented programming in Objective-C and Swift.
40/100 healthLoading repository dataβ¦
hansemannn / repository
A simple library for generating and scanning QR codes natively. Built with Swift (iOS) and Kotlin (Android) π
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A simple library for generating and scanning QR codes natively.
import QRCode from 'ti.qrcode';
const win = Ti.UI.createWindow({
backgroundColor: '#fff'
});
win.add(Ti.UI.createImageView({
width: 200,
height: 200,
top: 30,
image: QRCode.fromString('https://google.com')
}));
const btn = Ti.UI.createButton({
title: 'Start scan',
top: 250
});
btn.addEventListener('click', () => {
QRCode.scan({
callback: event => {
alert('SUCCESS: ' + event.success + ', TEXT: ' + event.text || 'n/a');
}
});
// iOS-only: Use "hideActiveScanner()" to hide the active scanner manually
});
win.add(btn);
win.open();
MIT
Hans KnΓΆchel
Selected from shared topics, language and repository descriptionβnot editorial ratings.
steipete /
Delightful, simple library for aspect oriented programming in Objective-C and Swift.
40/100 healthjoeldev /
URL routing library for iOS with a simple block-based API
91/100 healthammarahm-ed /
A simple and robust library for creating & displaying Admob Native Advanced Ads in your React Native App using Native Views.
BeatsKitano /
Somo is a iOS Skeleton-style animation library that's simple enough,and in objective-c
81/100 healthmapbox /
Simple KML is a simple & lightweight parsing library for KML written in Objective-C for the iOS platform.
25/100 healthmierau /
An Objective-C templating engine designed to be easy to use (single class, simple interface) with features enough to handle the cases commonly faced by developers in need of a such a library. The engine sits on top of the advanced key-value syntax and parsing done through Apple's NSPredicate and NSExpression classes for conditions and value expressions in templates.
49/100 health