Skip to main content

7 posts tagged with "UI Design"

The UI Design tag archive on our blog features articles and tutorials that delve into the world of User Interface Design. Learn from experts and master the art of creating intuitive, user-friendly designs.

View All Tags

Introduction to Android UI Design with Kotlin

· 7 min read
Engineering Team

This tutorial will provide a comprehensive introduction to Android UI design using Kotlin. Android UI design refers to the process of creating visually appealing and user-friendly interfaces for Android applications. With the increasing popularity of Kotlin as a programming language for Android development, it is essential for software developers to understand how to design effective UIs using Kotlin.

Angular and Internationalization: Supporting Multiple Languages

· 11 min read
Engineering Team

In this tutorial, we will explore how to support multiple languages in an Angular application using internationalization (i18n) techniques. Internationalization is crucial for any application that targets a global audience, as it allows users to interact with the application in their preferred language. We will cover the key concepts and steps involved in setting up Angular internationalization, configuring language support, handling language-specific content, and implementing best practices for internationalization. Additionally, we will discuss common challenges and provide solutions, as well as demonstrate how to use Angular's internationalization APIs effectively. By the end of this tutorial, you will have a comprehensive understanding of how to support multiple languages in your Angular applications.

How to color UIImage objects programmatically in Swift

· 2 min read
Full Stack Developer

UIImage is the Swift approach to modeling images. In order to display an image on the screen, you’re most likely going to use UIImageView, which takes a UIImage object and presents it in the view hierarchy. To color UIImage objects there’s some extra work required. Coloring images can be very helpful when dealing with app icons, tab bar items, navigation items, etc.

Introduction to SwiftUI And The Future of iOS Development

· 11 min read
Full Stack Developer

swift ui intro

SwiftUI is a newly released framework to help iOS developers build user interfaces across all Apple platforms with the power of Swift. SwiftUI has been launched at WWDC 2019 and has been increasing in popularity exponentially ever since. SwiftUI addresses the major pain points that iOS engineers were facing with building interfaces, and for these reasons, SwiftUI is the future of front-end development on iOS. We are making a quick introduction to SwiftUI to highlight its simplistic yet powerful paradigm.

Auto Layout: Should you use Interface Builder for building your iOS app?

· 6 min read
Full Stack Developer

By introducing Auto Layout, Apple made a lot of progress in their attempt to help iOS developers in building their iOS app's user interfaces. The Interface Builder got a lot better, the Auto Layout was integrated into it, and more recently UIStackViews are gaining a lot of traction and popularity. Having many different approaches of laying out views with Auto Layout, makes it necessary to decide upfront, on a consistent pattern to be followed when building your iOS app.