Modularization helps keep your app organized by splitting code into smaller parts called modules. This can improve build times because only changed modules need rebuilding. At runtime, modularization can reduce memory usage by loading only needed modules, helping keep your app smooth and responsive. However, if modules are too many or too small, it might add overhead in loading and linking, which can slightly affect startup time and frame rate.
Overall, well-planned modularization supports maintaining a steady 60fps frame rate and efficient memory use, which is important for smooth animations and battery life.