Krisz
Krisz
[ServerMiddleware documentation ](https://nuxtjs.org/api/configuration-servermiddleware/) ### My setup ```javascript // app/serverMiddleware/test.js module.exports = function (req, res, next) { console.log('It works!'); next(); }; ``` ```javascript // nuxt.config.js serverMiddleware: [ '~/serverMiddleware/test' ], ``` ###...
## Steps to Reproduce 0. Let's say that i have a simple stateful MyApp widget with a MaterialApp widget inside (the sample code is below). 1. When I first run...
I think i maybe found a bug regarding tabs, NestedScrollView, SliverAppBar, SliverOverlapAbsorber - i don't know exactly. I need a slightly transparent floating and snapping appbar with tabs. ## Steps...