SwiftUI dev
Photo
What will be printed on the screen?
Что выведется на экран?
Что выведется на экран?
Anonymous Quiz
56%
B: b
22%
B: a
9%
A: b
13%
A: a
SwiftUI dev
Photo
What will be printed on the screen?
Что выведется на экран?
Что выведется на экран?
Anonymous Quiz
9%
meow, meow, meow, roar
38%
meow, growl, meow, roar
11%
meow, meow, growl, roar
42%
meow, growl, growl, roar
This media is not supported in your browser
VIEW IN TELEGRAM
🎢🚁 Слайдер изображений с эффектом page view контроллера.
Код здесь.
🌇🎥 Let's create spectacular image slider with page view controller effect using pure SwiftUI.
Code is here.
#tasty #groovy
@swiftui_dev
Код здесь.
🌇🎥 Let's create spectacular image slider with page view controller effect using pure SwiftUI.
Code is here.
#tasty #groovy
@swiftui_dev
SwiftUI dev
Patched Yandex maps mobile as SwiftPM working on Xcode > 13.3 on M1, however waiting for official release announced last week)) Пропатченная версия Яндекс карт, собранная как SwiftPM, работающая на Xcode старше 13.3 на M1, так или иначе ждём официального…
🗺️📍Обновил YandexMapsMobile (full и lite) с поддержкой SwiftPM до версии 4.3.2
🗺️📍Just updated YandexMapsMobile with SwiftPM to 4.3.2 version
Full and lite versions
#swiftpm #getsources
🗺️📍Just updated YandexMapsMobile with SwiftPM to 4.3.2 version
Full and lite versions
#swiftpm #getsources
GitHub
GitHub - c-villain/YandexMapsMobile: Yandex Maps Mobile full Swift package
Yandex Maps Mobile full Swift package. Contribute to c-villain/YandexMapsMobile development by creating an account on GitHub.
Media is too big
VIEW IN TELEGRAM
🖼️🤳 Сториз с 3d переходом между кадрами (поддержка iOS 14+)
За кодом сюда
🖼️🤳 Stories on pure SwiftUI (iOS 14+) with 3d-cube animation for transition between scenes and timer for each slide
Code is here
#tasty #groovy
@swiftui_dev
За кодом сюда
🖼️🤳 Stories on pure SwiftUI (iOS 14+) with 3d-cube animation for transition between scenes and timer for each slide
Code is here
#tasty #groovy
@swiftui_dev
🦉 Very nice package with the UI Components collection
🦍 Хорошая либа с ui компонентами
#swiftpm #getsources
🦍 Хорошая либа с ui компонентами
#swiftpm #getsources
GitHub
GitHub - VakhoKontridze/VComponents: VComponents is a SwiftUI collection that contains reusable UI components
VComponents is a SwiftUI collection that contains reusable UI components - VakhoKontridze/VComponents
⚖️ Хорошая либа FluentUI от Microsoft как пример того, как можно хорошо структурировать дизайн-систему
👷♂️ Nice package Microsoft's Fluent UI as example how you can organize your design system
#swiftpm #howto #getsources #groovy
👷♂️ Nice package Microsoft's Fluent UI as example how you can organize your design system
#swiftpm #howto #getsources #groovy
GitHub
GitHub - microsoft/fluentui-apple: UIKit and AppKit controls for building native Microsoft experiences
UIKit and AppKit controls for building native Microsoft experiences - microsoft/fluentui-apple
This media is not supported in your browser
VIEW IN TELEGRAM
👷♂️👻Лайфхак для дебага вьюх. Цвет фона меняется при каждой отрисовки вью. Таким образом можно визуально увидеть, насколько часто меняются стэйты.
👾🤖View’s debugging life hack. Background color changes every time view’s rendering. So you can visual analize how often you change states for example.
#groovy
@swiftui_dev
👾🤖View’s debugging life hack. Background color changes every time view’s rendering. So you can visual analize how often you change states for example.
public extension Color {
static var random: Color {
Color (
red: .random (in: 0...1.0),
green: .random (in: 0...1.0),
blue: .random (in: 0...1.0)
)
}
}
public extension View {
@ViewBuilder
func randomBackgroundColor() -> some View {
background(Color.random)
}
}
#groovy
@swiftui_dev
Media is too big
VIEW IN TELEGRAM
🥷 👋 Демо использования одного из быстрорастущих подходов в мобильной разработке - Server-Driven UI, как можно быстро поменять ваше приложение без релиза в стор.
Такой подход все больше и больше набирает популярность в особенности в e-commerce.
🖖🏻🤠 Server-Driven UI.
See how to use one of the most efficient and flexible approaches to change your app without releasing in the AppStore.
You can easily tune your views on the server side.
This approach is gaining popularity more and more especially in e-commerce.
Code is here.
#tasty #groovy
@swiftui_dev
Такой подход все больше и больше набирает популярность в особенности в e-commerce.
🖖🏻🤠 Server-Driven UI.
See how to use one of the most efficient and flexible approaches to change your app without releasing in the AppStore.
You can easily tune your views on the server side.
This approach is gaining popularity more and more especially in e-commerce.
Code is here.
#tasty #groovy
@swiftui_dev
Отличная статья на тему подводных камней в использовании UDF архитектур. Одним из таких является нарушение принципа LoB (Locality of Behaviour).
Nice article about pitfalls (e.g. losing the locality of behavior) in using Unidirectional architectures in swift.
#readthis
Nice article about pitfalls (e.g. losing the locality of behavior) in using Unidirectional architectures in swift.
#readthis
Medium
The Dark Side of Unidirectional Architectures in Swift
The ping-pong problem