Questions tagged [rive]

Rive is a real-time interactive design tool that allows you to design, animate, and integrate your assets into any platform. Rive was formerly known as Flare.

102 questions
1
vote
2 answers

How to Use Flare Animation as Image Placeholder with Fade-In Animation

I'm trying to show an image placeholder while the image is being loaded from the network and replace the placeholder with an actual image with a fade-in animation. This works fine when I use a simple png image from assets. Following is the existing…
Asad
  • 81
  • 1
  • 7
1
vote
1 answer

How do I change the start/end locations of gradient fills in Rive/Flare programatically in Flutter?

I have a simple ball that uses a gradient fill to make it look like it's lit from one side: I'd like to modify the gradient fill at runtime in Flutter (for example to make it seem like the light is moving around relative to the ball). I was able to…
Danny Tuppeny
  • 40,147
  • 24
  • 151
  • 275
1
vote
4 answers

Change color in rive (flare)

I have a .flr animation of a minion. Is it possible to change colors of his body, pants, eyes, etc dynamicaly and separately in flutter app? PS Minion is just an example i found on rive.app .There will be another character with lots of different…
Dmitry Podbolotov
  • 153
  • 1
  • 2
  • 7
1
vote
0 answers

iMessage effects with Flutter

Does anyone know if there are any pre-made packages for effects like the ones in iMessage? https://www.youtube.com/watch?v=gfAPip-QtTc I'm specifically looking for something along the lines of the confetti or balloon effect (but with hearts) If…
Nelson.b.austin
  • 3,080
  • 6
  • 37
  • 63
0
votes
0 answers

How to fix definition of implicit copy assignment operator for 'Mat2D' is deprecated error?

i am writing an application that has an animated splash screen, the animation was created using Rive. the application before adding the rive animation file was working perfectly. But when i tried to add the rive animation file to the splash screen,…
0
votes
0 answers

How to control the rotation of rive animation from flutter

So I have a rive animation , and i want to rotate the legs of the animation to a certain degree using inputs from my flutter application. For example in the application if the user selects 60 degree , then the animation's legs should also move 60…
0
votes
0 answers

How to find out if Rive animation finishes playing in SwiftUI

I created a simple Rive animation that I would like played when my app is opened. The question is - how do I programmatically find out when the Rive animation has finished playing, so I can show the main content of my app? struct MainView: View { …
thecanteen
  • 762
  • 5
  • 13
0
votes
0 answers

Keep Flutter Container in Column Tight to Rive Animation

I've been having quite a bit of issues lately with columns and rows in Flutter, using Rive animations. For instance, I have a column, and one of its children is a Rive animation. Via setting the flex of the main axis or by specifying a height, I can…
Hailrig
  • 15
  • 5
0
votes
1 answer

rive computed var not accepting input

I'm having an issue updating the input of a rive animation in swiftui. I'm trying to set the filename using a computed property, so it will update from a viewmodel's name property. It works, and loads the right file, but while using the computed…
byrnec25
  • 29
  • 5
0
votes
0 answers

Swift version manager

I have a .rive file which I want to use in my Xcode project. So I added pod 'RiveRuntime'. I installed. But while importing the pod import RiveRuntime I'm getting an error :Failed to build module 'RiveRuntime'; this SDK is not supported by the…
0
votes
0 answers

GET http://localhost:5173/src/assets/images/splash/splash_desktop_reduce_size_02a_noClip.riv?import net::ERR_ABORTED 404 (Not Found)

Is there anyone who can help me with this issue? I have created a React app with Vite, the Next Generation Frontend Tooling. In the network tab, it is showing me a 404 error, and I think the icon is not loading. Do I need to make changes in the Vite…
sohaib
  • 574
  • 5
  • 16
0
votes
0 answers

How to create Game Like Animation in Flutter

Flutter has tons of features related to Animations which are very useful. Currently I'm working in a project where I have to create complex animation. There will be an envelop. On user interaction, it will be opened and a card will be shown with…
0
votes
0 answers

Execution failed for task ':rive_common:configureCMakeDebug[arm64-v8a]'

i face this problem when execute my code i searched for some solution but one solved even the solutions for flutter are rare cupertino_icons: ^1.0.2 firebase_core: ^2.14.0 cloud_firestore: ^4.5.2 flutter_native_splash: ^2.2.19 …
0
votes
0 answers

execution failed for task ':rive_common:buildcmakedebug[armeabi-v7a]'

when i try to run my app i face this problam and also i just changed my app data to anouther database (firestore) execution failed for task ':rive_common:buildcmakedebug[armeabi-v7a]'. java.nio.file.filesystemexception:…
0
votes
1 answer

Shaping a RiveComponent in Flutter

My app below is a Flame_Flutter screen with Rive animation class HorizontalAnimComponent extends RiveComponent with HasGameRef, TapCallbacks { HorizontalAnimComponent(Artboard artboard) : super(artboard: artboard); late…