Useful Github Actions

Useful Github Actions

Setting GitHub actions is a headache, and it takes time to run correctly. I’ll share what actions I daily use. ... Read More

devopsgithubiOSjavascriptprogrammingtechnology
Shawn
1/11/2025
Shawn
twentyfour: your lifestyle productivity planner

twentyfour: your lifestyle productivity planner

a product of Aksoft Studios [aksoftstudios@gmail.com] I recently started creating my own mobile product — I had an idea ... Read More

android-app-development
Akqeel
1/5/2025
Akqeel
TravelTime: A simple commute app built on React Native

TravelTime: A simple commute app built on React Native

React Native has become increasingly popular over the years, and I wanted to learn the basics of this framework. To get ... Read More

mobile-app-developmentandroidreact-nativeios
Akqeel
12/12/2024
Akqeel
How to install IPA file on iPhone device

How to install IPA file on iPhone device

To install IPA file on iPhone device, use Apple Configurator app How to use it? Connect your iPhone into M... Read More

apple configurationiOSipa file
Shawn
11/1/2024
Shawn
Android UI: Building a Custom View

Android UI: Building a Custom View

I was recently working on an android app, and one of the features required me to build a custom UI component. In this po... Read More

androidandroid-app-development
Akqeel
9/19/2024
Akqeel

Why volatile is essential in double-checked singleton

This is a double-checked locking singleton implementation without the volatile keyword. What’s wrong with it? class Foo ... Read More

double-checked-lockingsingleton
Tianqi
9/14/2024
Tianqi

iOS, Security topics – Certificate, Provisioning, Code Signing, App Transport Security and CryptoKit

Security topics are common interview question. I summarized what is Certificate, Provisioning, Code Signing, App Transpo... Read More

Shawn
9/8/2024
Shawn
Turned 40 and got layoff on April fools day 2024, Here is my senior iOS interview experience with Google, Meta and Amazon

Turned 40 and got layoff on April fools day 2024, Here is my senior iOS interview experience with Google, Meta and Amazon

I turned 40 and got layoff on April fools day. It’s not a success story but I want to share my iOS interview ex... Read More

Shawn
8/9/2024
Shawn
Core Animation Basics

Core Animation Basics

✍️ Note What is Core Animation Core Animation use bitmaps. UIView -> Layer -> Bitmap -> Hardware... Read More

Shawn
7/4/2024
Shawn
Socket Programming using Vapor and URLSessionWebSocketTask

Socket Programming using Vapor and URLSessionWebSocketTask

In this post, I’ll share how to build socket application. Project Structure I created a workspace and put t... Read More

iOSSwiftUIvaporWebSocket
Shawn
7/2/2024
Shawn
iOS, Useful Bit Manipulation Techniques

iOS, Useful Bit Manipulation Techniques

✍️ Note Some codes and contents are sourced from Udemy. This post is for personal notes where I summarize t... Read More

Shawn
6/9/2024
Shawn
UIKit, Learn Mobile System Design from Apple’s Sample Project

UIKit, Learn Mobile System Design from Apple’s Sample Project

Did you know Apple provides Sample Code? I learned App Architecture from Apple’s Sample Projects. In this post,... Read More

Shawn
5/27/2024
Shawn
iOS, Graph(unweighted and weighted) – Shortest Path Algorithms (Dijkstra, Bellman-Ford)

iOS, Graph(unweighted and weighted) – Shortest Path Algorithms (Dijkstra, Bellman-Ford)

✍️ Note Some codes are sourced from Loony Corn’s Udemy Course (https://www.udemy.com/user/janani-ravi-2/). This ... Read More

Shawn
5/20/2024
Shawn
What sorting algorithm does Swift use in iOS?

What sorting algorithm does Swift use in iOS?

Sort algorithm in Swift Foundation is TimSort (Insertion Sort + Merge Sort) I wrote posts about Insertion Sort and Me... Read More

Shawn
5/14/2024
Shawn
iOS, Find least common ancestor from 2 UIViews

iOS, Find least common ancestor from 2 UIViews

Find the least common ancestor. UIView is a tree data structure. Each node (UIView) can have multiple subviews. To fi... Read More

Shawn
5/7/2024
Shawn
Backward and Forward Compatibilities

Backward and Forward Compatibilities

Forward compatibility and backward compatibility sometimes are confusing Here are their definitions from Wikipedia: For... Read More

backwards-compatibilityforward-compatibility
Tianqi
4/30/2024
Tianqi
iOS, Implement Least Recently Used Cache

iOS, Implement Least Recently Used Cache

✍️ Note Some codes are sourced from Holczer Balazs’s Udemy Course (https://www.udemy.com/course/algorithms-and-d... Read More

Shawn
4/26/2024
Shawn
iOS, General Programming Problems

iOS, General Programming Problems

✍️ Note Some codes are sourced from Loony Corn’s Udemy Course (https://www.udemy.com/user/janani-ravi-2/). This ... Read More

Shawn
4/21/2024
Shawn
iOS, Combine Framework

iOS, Combine Framework

✍️ Note Some codes and contents are sourced from Apple, WWDC and BigMountStudio. This post is for personal ... Read More

Shawn
4/17/2024
Shawn
Sliding Window: Read once, Practice Everywhere.

Sliding Window: Read once, Practice Everywhere.

The sliding window is a very common technique to optimize subarray problems. I have solved similar problems many times, ... Read More

algorithmsdata-structuressliding-windows
Tianqi
4/9/2024
Tianqi
iOS, Graph Data Structure

iOS, Graph Data Structure

✍️ Note Some codes and contents are sourced from Udemy. This post is for personal notes where I summarize t... Read More

Shawn
4/5/2024
Shawn
iOS, Heap Data Structure

iOS, Heap Data Structure

✍️ Note Some codes and contents are sourced from Udemy. This post is for personal notes where I summarize t... Read More

Shawn
4/3/2024
Shawn
iOS, Autorelease Pool

iOS, Autorelease Pool

✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More

Shawn
4/3/2024
Shawn
iOS, File System

iOS, File System

✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More

Shawn
3/31/2024
Shawn
iOS, Stack and Queue

iOS, Stack and Queue

✍️ Note Some codes and contents are sourced from Udemy. This post is for personal notes where I summarize the or... Read More

Shawn
3/31/2024
Shawn
iOS, App Architectures

iOS, App Architectures

✍️ Note Some codes and contents are sourced from Apple’s official documentation, google android official site an... Read More

Shawn
3/30/2024
Shawn
iOS, Communicate with a Server

iOS, Communicate with a Server

✍️ Note Some codes and contents are sourced from Apple’s official documentation, educative.io and mozilla. This ... Read More

Shawn
3/29/2024
Shawn
iOS, hitTesting a View – hitTest, point(inside)

iOS, hitTesting a View – hitTest, point(inside)

✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More

Shawn
3/26/2024
Shawn
Swift, Recursion and the Recursive Sense

Swift, Recursion and the Recursive Sense

✍️ Note Some codes are sourced from Loony Corn’s Udemy Course (https://www.udemy.com/user/janani-ravi-2/). This ... Read More

Shawn
3/24/2024
Shawn
iOS, What is Clean Architecture and SOLID principle?

iOS, What is Clean Architecture and SOLID principle?

✍️ Note Some codes and contents are sourced from The Clean Code Blog official documentation, The iOS Interview G... Read More

Shawn
3/18/2024
Shawn
Swift, final keyword

Swift, final keyword

✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More

Shawn
3/18/2024
Shawn
iOS, App life cycle

iOS, App life cycle

✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More

Shawn
3/18/2024
Shawn
Swift, Data Structure – Linked List

Swift, Data Structure – Linked List

✍️ Note Some codes are sourced from Loony Corn’s Udemy Course (https://www.udemy.com/user/janani-ravi-2/).... Read More

Shawn
3/17/2024
Shawn
Swift, Data Structure – Tree Structure

Swift, Data Structure – Tree Structure

✍️ Note Some codes are sourced from Loony Corn’s Udemy Course (https://www.udemy.com/user/janani-ravi-2/).... Read More

Shawn
3/17/2024
Shawn
iOS, NSCoding

iOS, NSCoding

✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More

Shawn
3/16/2024
Shawn
UIKit: UIView, UIImageView

UIKit: UIView, UIImageView

✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More

Shawn
3/16/2024
Shawn
Swift, Dispatch Semaphore

Swift, Dispatch Semaphore

✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More

Shawn
3/16/2024
Shawn
iOS, Memory Layout, static library, dynamic library

iOS, Memory Layout, static library, dynamic library

✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More

Shawn
3/16/2024
Shawn
Swift, Property Wrappers

Swift, Property Wrappers

✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More

Shawn
3/16/2024
Shawn
Swift, Tips for solving data structure and algorithms

Swift, Tips for solving data structure and algorithms

Handling String How to access character? You can’t access character by integer. You should use st... Read More

Shawn
3/15/2024
Shawn
Swift, Modern Concurrency

Swift, Modern Concurrency

✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More

Shawn
3/15/2024
Shawn
Swift, OperationQueue

Swift, OperationQueue

✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More

Shawn
3/14/2024
Shawn
Understanding of MVVM architecture pattern

Understanding of MVVM architecture pattern

https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93viewmodelModel: Business logic, Data model View: UI presentatio... Read More

mvvm
Tianqi
3/13/2024
Tianqi
Swift, Concurrency Programming guide

Swift, Concurrency Programming guide

✍️ Note All the codes and contents are sourced from Apple’s official documentation. This post is for personal n... Read More

Shawn
3/12/2024
Shawn
Swift, Rethrows

Swift, Rethrows

Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes where I summari... Read More

Shawn
3/12/2024
Shawn
iOS, RunLoop

iOS, RunLoop

Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes where I summari... Read More

Shawn
3/11/2024
Shawn
Swift, Sorting and Binary Search Algorithm

Swift, Sorting and Binary Search Algorithm

Useful Foundation APIs swapAt swap the value in an array by passing the index Bubble Sort func bubbleSort(... Read More

Shawn
3/10/2024
Shawn
Swift, DispatchQueue

Swift, DispatchQueue

✍️ Note All the codes and contents are sourced from Apple’s official documentation. This post is for personal n... Read More

Shawn
3/10/2024
Shawn
Swift, ARC Automatic Reference Counting

Swift, ARC Automatic Reference Counting

✍️ Note All the codes and contents are sourced from Apple’s official documentation. This post is for personal n... Read More

Shawn
3/9/2024
Shawn
Leetcode official iOS app – How can I change Chinese language to English

Leetcode official iOS app – How can I change Chinese language to English

Download Leetcode official app Did you know leetcode has an official iOS app? You can download it. But there is on... Read More

ios interviewLeetcodeleetcode appleetcode ipadproblem solving
Shawn
2/22/2024
Shawn
Do you require a server for your iOS app? CloudKit might be the perfect fit for you!

Do you require a server for your iOS app? CloudKit might be the perfect fit for you!

Choosing a server can be challenging, especially if you’re not a backend engineer but still need one for your iOS ... Read More

cloudkitfullstackiOSserver side swiftvapor
Shawn
2/12/2024
Shawn
How Android touch events are dispatched?

How Android touch events are dispatched?

In this article, I will elaborate on how touch events are dispatched and handled in the Android view tree. The article c... Read More

android
Tianqi
1/28/2024
Tianqi
A Compose Multiplatform practice app

A Compose Multiplatform practice app

I built an practice app based on this tutorial: https://www.jetbrains.com/help/kotlin-multiplatform-dev/multiplatform-kt... Read More

compose-multiplatform
Tianqi
1/4/2024
Tianqi
[Draft] Python cheat sheet for iOS Engineer

[Draft] Python cheat sheet for iOS Engineer

I asked my self Is python worth to learn for iOS development? My answer is Yes. Because I can use it for Build s... Read More

Shawn
1/4/2024
Shawn
Xcode: How to upload dSYM to Firebase Crashlytics

Xcode: How to upload dSYM to Firebase Crashlytics

Have you faced the missing dSYM issue? You can fix it by uploading dSYM to firebase. Official Document Build Sett... Read More

dsymfirebase crashlyticsiOSmissing dsymxcode
Shawn
12/20/2023
Shawn
Xcode Cloud, How to upload ipa to Firebase AppDistribution

Xcode Cloud, How to upload ipa to Firebase AppDistribution

1. Download firebase macOS tool https://firebase.google.com/docs/cli#mac-linux-standalone-binary 2. Copy firebase-... Read More

firebase distributionipaipa uploadXcode cloud
Shawn
12/20/2023
Shawn
What is Dynamic Programming?

What is Dynamic Programming?

For me, DP problem is the most challenging problem when I faced it during the interview process. To understand it I summ... Read More

AlgorithmCoding InterviewDPDynamic ProgrammingLeetcodeSwift Algorithm
Shawn
12/16/2023
Shawn
The top 5 mistakes I made on DTO

The top 5 mistakes I made on DTO

DTO(Data Transfer Object) is used to pass data between systems or layers while maintaining a clear and structured repres... Read More

dtosoftware-developmentdesign-patterns
Tianqi
12/7/2023
Tianqi
How to implement MasonryLayout (Pinterest Style) using UICollectionViewCompositionalLayout

How to implement MasonryLayout (Pinterest Style) using UICollectionViewCompositionalLayout

In this post, I’ll share sample code for implementing MasonryLayout using UICollectionViewCompositionalLayout. ... Read More

How to implement MasonryLayout (Pinterest Style) using UICollectionViewCompositionalLayoutNSCollectionLayoutGroupCustomItemPinterest
Shawn
11/26/2023
Shawn
SwiftUI: Syntax Highlighting JSON using UITextView

SwiftUI: Syntax Highlighting JSON using UITextView

It’s very simple. I used this Highlight SPM Sample Code // // ContentView.swift // Button // // Created by Sun... Read More

Shawn
9/26/2023
Shawn
Project Setup for Full Stack Swift Developer – Use Workspace

Project Setup for Full Stack Swift Developer – Use Workspace

This post is about project setup for full stack swift developer. It is the same as WWDC 2022 – Use Xcode for serve... Read More

Shawn
9/2/2023
Shawn
Xcode Cloud – Auto-Generated Test Notes for TestFlight Build (PR Title, Commits, and JIRA Ticket Links)

Xcode Cloud – Auto-Generated Test Notes for TestFlight Build (PR Title, Commits, and JIRA Ticket Links)

No more put ‘No test notes’ at Test Flight No test notes. It’s not clear what to ... Read More

Shawn
8/19/2023
Shawn
Xcode Cloud – How to check App Version (MARKETING_VERSION) from ci_post_xcodebuild.sh

Xcode Cloud – How to check App Version (MARKETING_VERSION) from ci_post_xcodebuild.sh

Check App Version using xcodebuild Update ci_scripts/ci_post_xcodebuild.sh CURRENT_PROJECT_VERSION=$(xcodebuild -projec... Read More

Shawn
8/19/2023
Shawn
Apple Vision Pro Developer Lab in Singapore

Apple Vision Pro Developer Lab in Singapore

Today I attended Apple office in Singapore to test Vision Pro. Office is located in One North. From my office to here It... Read More

Apple OfficeApple SingaporeApple Vision ProARKitRealityKitVision ProVision Pro Developer LabVisionOS
Shawn
8/7/2023
Shawn
How to write a unit test for validating regex without using XCUIElement’s typeText function

How to write a unit test for validating regex without using XCUIElement’s typeText function

This post might be helpful if you are considering using the typeText function for validating user input using regular ex... Read More

Shawn
7/9/2023
Shawn
How to check the unused Swift Code

How to check the unused Swift Code

Recently I faced an issue with compile -O for product build. I assumed that It caused by dead function issue. I reported... Read More

Shawn
6/3/2023
Shawn
City Commuter App Privacy Policy

City Commuter App Privacy Policy

At City Commuter App, we are committed to protecting the privacy of our users. This privacy policy explains the types of... Read More

Shawn
5/15/2023
Shawn
How Swift Compile Optimazation Level works

How Swift Compile Optimazation Level works

Optimization Level Swift compiler has 3 optimization options (link) -O for product code -Onone for development... Read More

iOSswift
Shawn
4/15/2023
Shawn
AWS Expenses for My App

AWS Expenses for My App

I’ve been using AWS to host my Vapor Swift server, but currently, there’s no traffic as I am just running th... Read More

Shawn
2/18/2023
Shawn
How to check the latest SwiftUI preview crash log

How to check the latest SwiftUI preview crash log

SwiftUI Preview crashed Preview Crashed logs are saved at “~/Library/Logs/DiagnosticReports“ ... Read More

Shawn
2/12/2023
Shawn
nativeMobile, Privacy Policy

nativeMobile, Privacy Policy

At nativeMobile, we are committed to protecting the privacy of our users. This privacy policy explains the types of info... Read More

Shawn
1/23/2023
Shawn
Why did we change our iOS rule to allow using Storyboard?

Why did we change our iOS rule to allow using Storyboard?

Our UI creation rule was creating a UI programmatically. But recently, we changed it. Now our iOS team can create UI dep... Read More

iOSiOS App Developmentswift
Shawn
11/7/2022
Shawn
I attended Droidcon Singapore 2022: Here is a list of things I learnt

I attended Droidcon Singapore 2022: Here is a list of things I learnt

Introduction It was good to be back attending talks at Droidcon Singapore this year. The last time I was here was back i... Read More

kotlin-multiplatformkotlinandroidsoftware-developmentjetpack-compose
Akqeel
10/22/2022
Akqeel
Mobile App Development: Kotlin Multiplatform Mobile

Mobile App Development: Kotlin Multiplatform Mobile

Introduction Kotlin Multiplatform Mobile (KMM) is a technology developed by JetBrains (https://www.jetbrains.com/) that ... Read More

kotlin-multiplatformiosandroidkotlin
Akqeel
10/16/2022
Akqeel
How to use Docker on your local Vapor Server

How to use Docker on your local Vapor Server

I wrote about How to deploy Vapor App(Server-Side-Swift) to the AWS This post is about setting on a local server using D... Read More

Shawn
8/8/2022
Shawn
How we setup an A/B test to study the best user experience for our users

How we setup an A/B test to study the best user experience for our users

A guide on how to setup A/B tests on Android to help improve user experience Background Our team was tasked with improvi... Read More

androidab-testing-softwaremobile-app-developmentandroid-app-development
Akqeel
7/20/2022
Akqeel

Programming Language: Lox

Introduction My attempt at building the interpreter from the book Crafting Interpreters, where the author walks us throu... Read More

Akqeel
6/26/2022
Akqeel
Struct vs. Class: Deciding between Structs and Classes

Struct vs. Class: Deciding between Structs and Classes

I was asked What is Struct and Class? Could you explain it? It’s the most common interview question. I summarized ... Read More

Shawn
5/16/2021
Shawn
Let’s make a receipt text recognizer with the Apple Vision framework.

Let’s make a receipt text recognizer with the Apple Vision framework.

Overview There are only three steps. I tested these steps using the playground app.   ... Read More

Shawn
4/11/2021
Shawn
How to setup AWS load balancer for Vapor App(Server-Side Swift)

How to setup AWS load balancer for Vapor App(Server-Side Swift)

Overview   Create AWS Certificate To support HTTPS, We need to create a certificate. I&#... Read More

Shawn
1/10/2021
Shawn
How to deploy Vapor App(Server-Side-Swift) to the AWS?

How to deploy Vapor App(Server-Side-Swift) to the AWS?

This post will write about Docker, AWS ECR, ECS, Fargate, RDS, and Github Action. Contents Overview Getting Start AWS ... Read More

Shawn
1/4/2021
Shawn
The life cycle of UIViewController

The life cycle of UIViewController

In this post, I’ll explain the life cycle of UIViewController. What happens when you create the UIViewController? ... Read More

Shawn
11/8/2020
Shawn
How To Create a Tip Calculator on iOS using UIKit and Storyboards

How To Create a Tip Calculator on iOS using UIKit and Storyboards

In this tutorial, you’ll learn how to separate logics from view and to deal with user input on UITextField by making the... Read More

swiftuikit
Shawn
10/25/2020
Shawn
Useful English resources like books, lectures, and services for Software Engineer

Useful English resources like books, lectures, and services for Software Engineer

In this post, I’ll share useful English resources for Software Engineer. I struggled to express my thought to... Read More

Shawn
10/22/2020
Shawn
How to use an older version of Swift on Xcode 12?

How to use an older version of Swift on Xcode 12?

Sometimes You need to use the older version of Swift for preparing the interview. For example, The Codility doesn’t supp... Read More

Shawn
9/20/2020
Shawn
How can I get a formatted address from CLPlacemark?

How can I get a formatted address from CLPlacemark?

This post is concise, but useful to represent the formatted address from CLPlacemark. The CoreLocation provides the loca... Read More

Shawn
9/2/2020
Shawn
Xcode shortcut keys to boost productivity

Xcode shortcut keys to boost productivity

In this post, I’ll introduce useful shortcut keys to boost your productivity. I know it’s hard to remember... Read More

xcode
Shawn
8/9/2020
Shawn
How to get the date you want using the Calendar

How to get the date you want using the Calendar

In this post, I’ll write about Calendar to get the date you want. You can get the specific time and dates like midnight,... Read More

swift
Shawn
7/17/2020
Shawn
My first experience of attending the international iOS conference, try! Swift Tokyo 2019

My first experience of attending the international iOS conference, try! Swift Tokyo 2019

I attended the try! Swift Tokyo 2019, which is my first attending iOS conference. I was very excited. I’ll share my exp... Read More

Shawn
6/6/2020
Shawn
How to animate path using CoreAnimation

How to animate path using CoreAnimation

I wrote a Behind the scene of delightful animation it is about Animation patterns in modern iOS Apps. In this post, I’ll... Read More

Shawn
5/17/2020
Shawn
How to display the temperature with unit?

How to display the temperature with unit?

In this post, I’ll share how to display the temperature with unit using the MeasurementFormatter. MeasurementFormatter ... Read More

Shawn
5/3/2020
Shawn
Behind the scene of delightful experience

Behind the scene of delightful experience

I had presented about iOS animations at LetSwift conference last year. I classified the animations by researching the mo... Read More

Shawn
4/25/2020
Shawn
How to remove text insets on UITextView?

How to remove text insets on UITextView?

Default UITextView has text insets, unlike the UILabel. How to remove the insets on UITextView like an UILabel? ... Read More

Shawn
4/19/2020
Shawn
Introduction to Table

Introduction to Table

Last month I made the Table library. I inspired by javascript console.table.   What is the Table? The Table is a ... Read More

swift
Shawn
4/11/2020
Shawn
What’s new on scrollView?

What’s new on scrollView?

In Xcode 11, the scroll view has two new things, which are the Content Layout Guide and Frame Layout Guide. It’s a very... Read More

Shawn
4/5/2020
Shawn
Must know things about Data Structure and Algorithms.

Must know things about Data Structure and Algorithms.

The coding interview is hard because We have to remember the basic data structures and algorithms. For me, I received ma... Read More

Shawn
4/5/2020
Shawn
How to render xib on Storyboard?

How to render xib on Storyboard?

When you create the custom view with xib and then set the custom view on Storyboard but if It has not appeared. How can ... Read More

Shawn
4/5/2020
Shawn
How to enable syntax highlighting for Swift on Squarespace

How to enable syntax highlighting for Swift on Squarespace

Let’s enabling syntax highlighting for Swift The Squarespace supports syntax highlighting for HTML, CSS, and Javascript.... Read More

Shawn
4/5/2020
Shawn
Android Architecture: Networking

Android Architecture: Networking

Photo by rawpixel on UnsplashHi again. In this post I thought of sharing a simple architecture I’ve been using to handle... Read More

android
Akqeel
8/29/2018
Akqeel
Android Perfomance: Layout Rendering

Android Perfomance: Layout Rendering

Layouts and views can be defined in one of two ways: via XML or programatically. Either way, the system will still need ... Read More

android-app-developmentandroid
Akqeel
4/19/2018
Akqeel
Getting Started with Flutter

Getting Started with Flutter

Flutter (https://flutter.io) is a new mobile SDK which can be used to build beautiful UI applications for cross platform... Read More

flutter
Akqeel
4/14/2018
Akqeel