talpx0

Results 8 issues of talpx0

path "\app\blog\[slug]\page.tsx" ``` export default function Blog({ params }) { let post = getBlogPosts().find((post) => post.slug === params.slug); if (!post) { notFound(); } return ( {post.metadata.title} {formatDate(post.metadata.publishedAt)} ); } let...

``` const { theme } = useTheme(); const bgImgProps:BgImgStateProps = { bgImgDegree: "45deg", colorStops: [ { color: "#2b2e4a", percent: "0%" }, { color: "#c4caef", percent: "50%" } ] } const...

### Current behaviour The modal may cause a quick flash; setting dismissable to false does not resolve this issue. Additionally, the modal can result in an unsmooth exit when used...

bug

```typescript export function calculateMoonPhase(currentDate: Date): number { const newMoonDate = new Date(Date.UTC(2019, 0, 6, 1, 28, 0)); // Reference New Moon date const lunarCycleLength = 29.53; // Average length of...

```tsx import * as React from "react" import Svg, { Defs, LinearGradient, Stop, Path } from "react-native-svg" const SvgComponent = (props) => ( ) export default SvgComponent ``` snack link...

bug

I'm currently developing a custom wrapper for widgets in Flutter that enables extensive customization, similar to how `{...rest}` works in TypeScript with React components. However, Dart doesn't support the spread...

request

**Description** ```dart class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MultiBlocProvider( providers: [ BlocProvider(create: (context) => ThemeCubit()), BlocProvider(create: (context) => WeatherProviderCubit()), ], child: BlocBuilder( builder:...

question
waiting for response

**Description** Add here a brief explanation to which units should be added and possibly why (e.g. they are often used in a specific job). We know that there are a...