Solve Problem/React Native
SharedStorage.java์์ ReactMethod ์ฌ์ฉ ์ ์ฃผ์์
์๋คํฌ
2023. 1. 17. 11:45
728x90
// ๐ Good Case
@ReactMethod
public void getAppName(Promise promise) {
promise.resolve("Roubit");
}
// ๐ Bad Case
@ReactMethod
public String getAppName(Promise promise) {
return "Roubit";
}
ํญ์ promise ์ฒ๋ฆฌ ํด์ค์ผ ํ๋ค.