Explore >> Select a destination


You are here

swiftwithmajid.com
| | arturgruchala.com
2.9 parsecs away

Travel
| | Parallax headers are a popular design pattern that can be used to create visually stunning interfaces in mobile and web applications. A parallax header creates the illusion of depth and movement by moving content at different speeds as the user scrolls. In this blog post, we'll be discussing the implementation
| | ashishkakkad.com
1.7 parsecs away

Travel
| | SwiftUI announced in WWDC 2019. It's an innovative, exceptionally simple way to build user interfaces across all Apple platforms with the power of Swift. In previous blog I have shared some references from apple documents. We will learn it by examples. First of all let's start with simple UI. Create New Project Create new project ... Read more
| | swiftui-lab.com
2.7 parsecs away

Travel
| | In the first part of this article, we are going to explore how to use .matchedGeometryEffect modifier, to create a hero transition.
| | migocpp.wordpress.com
24.3 parsecs away

Travel
| Lambda closures are an integral part of modern C++, in CUDA code they can be used in different levels. At the very basic, they can be used inside the device code: __global__ void setValueInnerLambda(cudacpp::DeviceVector c, int val) { auto idx = threadIdx.x; auto op = [=](int& i) { i = val; }; op(c[idx]); } Starting...