Motion resolves immediately
I'm using ripple to display a banner when a new track plays, but the spring motion resolves to px(400) immediately.
Solution:Jump to solution
Here is the Frame
```tsx
import React, { InstanceProps, ReactNode } from "@rbxts/react";
import { Colors } from "shared/util/colors";
import { Rounded } from "./Rounded";...
10 Replies
size={mapBinding(width, (T) => UDim2.fromOffset(T, px(75))}
Should I add
.getValue()
to the end of that? It's complaining I cannot assign Binding<UDim2> to UDim2Solution
Here is the Frame
where does it say that
nvm, I added
Binding<UDim2>
to the size type and that fixed ityou can use
BindingOrValue
type
exported from prhinteresting utility type, thanks for letting me know that exists.
why not width.map((t) =>
basically the same