fabb
fabb
@calvingit I stepped a bit through the disassembly. I think we cannot really fix `hidesBottomBarWhenPushed`. As far as I found out it works the following way: * `push` is called...
The „sequence vs. UI“ categorization of VCs reminds me of this React article which differentiates between „Presentational“ and „Container“ components: https://medium.com/@dan_abramov/smart-and-dumb-components-7ca2f9a7c7d0
That's what I suspected as well. Here's a full example: ``` import React from 'react' import PropTypes from 'prop-types' import { storiesOf } from '@storybook/react' import { withInfo } from...
Also there is `stroke-alignment`: https://svgwg.org/specs/strokes/#SpecifyingStrokeAlignment
I‘m fine with whatever maintainers decide. Since https://github.com/renovatebot/renovate/issues/15081 has a pretty good angle, I’ll close this issue in favor of the other.
We have a similar issue with this code (roughly): ``` export type IconProps = TestProps & SizeProps & SpaceProps & DisplayProps & ColorProps // these are more than 450 props...
I agree, the documentation should be fixed. I created a PR: #1062
In my project I solved with a workaround involving the `UINavigationControllerDelegate`: https://github.com/willhaben/Wireframes/blob/master/Source/Wireframes/NavigationControllerWireframe.swift#L105 `isMovingFromParentViewController` is a good solution, but it needs modification of the ViewControllers, which I wanted to avoid, as...
Excactly, the UINavigationController knows about this stuff internally, but it's not in the public interface, so we have to do wacky workarounds like involving querying its children for information that...
I ditched `next-compose-plugins` since it's unmaintained and replaced it with these lines: ``` module.exports = (_phase, { defaultConfig }) => { const plugins = [withStaticImport, withBundleAnalyzer, withCustomWebpack] return plugins.reduce((acc, plugin)...