How each one renders
Flutter renders every pixel itself via Skia/Impeller — that's why UI looks identical across iOS and Android. React Native maps JS components to real native views (UIKit, Android Views, and increasingly the New Architecture with Fabric). This is why animations tend to be smoother in Flutter and why native look-and-feel is easier in React Native.