HGHarish Gautaminharishgautam.hashnode.dev·May 9, 2024 · 5 min readHow to make splash animation in react-native with react-native-bootsplash and react-native-animated.Hello Guys today I will show you to make a beautiful animated splash screen using react-native. So lets get started. Start with react native setup I assume you have already setup the react-native project. Please visit this links for necessary setups...00
HGHarish Gautaminharishgautam.hashnode.dev·May 3, 2024 · 2 min readDependency Inversion Principle (DIP) - JavascriptThe Dependency Inversion Principle (DIP) is one of the SOLID principles of object-oriented design. It suggests that high-level modules should not depend on low-level modules but should depend on abstractions, and both high-level and low-level modules...00
HGHarish Gautaminharishgautam.hashnode.dev·May 3, 2024 · 2 min readInterface Segregation Principle (ISP) - JavascriptThe Interface Segregation Principle (ISP) is one of the SOLID principles of object-oriented design. It suggests that no client should be forced to depend on methods it does not use. In other words, you should design your interfaces in a way that clie...00
HGHarish Gautaminharishgautam.hashnode.dev·May 3, 2024 · 2 min readLiskov Substitution Principle (LSP) - JavascriptThe Liskov Substitution Principle (LSP) is one of the SOLID principles of object-oriented design, which states that objects of a derived class should be able to replace objects of the base class without affecting the correctness of the program. In ot...00
HGHarish Gautaminharishgautam.hashnode.dev·May 3, 2024 · 2 min readOpen-Closed Principle (OCP) - JavascriptThe Open-Closed Principle (OCP) is one of the SOLID principles of object-oriented design, and it encourages software components to be open for extension but closed for modification. This means that you should be able to extend the behavior of a modul...00