Blog
Changing the screen brightness in .NET MAUI
Learn how to change the screen brightness in your MAUI Android and iOS apps
Building a MAUI iOS app with Azure DevOps Pipelines
Learn how to build and sign your MAUI iOS app with Azure DevOps Pipelines and ouput an ipa file
Building a MAUI Android app with Azure DevOps Pipelines
Learn how to build and sign your MAUI Android app with Azure DevOps Pipelines and ouput both apk and aab files
.NET MAUI custom map pins
Learn how to display custom pin icons on a .NET MAUI map for both Android and iOS
Loading data on the server with the Next.js App Router
Previously with the Next.js Pages Router we would have loaded data using the getServerSideProps function. This is no longer available with the App Router so how do we accomplish the same thing?
Statically rendering (SSG) dynamic routes with the Next.js App Router
By default your Next.js dynamic routes will be generated on demand at request time. But we can improve performance and SEO by statically generating them at build time instead with generateStaticParams
Dynamic routes with the Next.js App Router
Sometimes you need your Next.js route segments to be dynamic as you might not know your exact segment names ahead of time