KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
CalcPicker
★ 9
Open GitHub ↗
Calculator Picker for iOS using SwiftUI
Download README (.md)
Explore Similar Repositories
TensorLLM
:
[IJCNN 2025] This is the repo for paper "TensorLLM: Tensorising Multi-Head Attention for Enhanced Reasoning and Compression in LLMs" (https://arxiv.org/abs/2501.15674)
Excel_dashboard
:
No description available.
mcp-sandbox
:
No description available.
linkedin-games
:
Solvers for LinkedIn's non-semantic puzzle games of Queens, Zip, Tango, and Mini-Sudoku.
fpx.f
:
A Fortran preprocessor in Fortran for modern Fortran.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
CalcPicker
?
Download (.md)
# CalcPicker Calculator Picker for iOS using SwiftUI.  ## Requirements - Development with Xcode 16.4+ - Written in Swift 6.1 - Compatible with iOS 18.0+ ## Usage ```swift import SwiftUI import CalcPicker struct ContentView: View { @State var value = "" @State var isPresented = false var body: some View { VStack { Button { isPresented.toggle() } label: { Text("Open CalcPicker") } .calcPicker(value: $value, isPresented: $isPresented) } .padding() } } ``` ## Privacy Manifest This library does not collect or track user information, so it does not include a PrivacyInfo.xcprivacy file. ## Demo This repository includes demonstration app for iOS & macOS. Open [Example/Example.xcodeproj](/Example/Example.xcodeproj) and Run it.