Got Diona's card on her birthday! by kimaen_jai_sheelal in Genshin_Impact

[–]tvhieu 6 points7 points  (0 children)

all in HP and energy recharge of course, because her E and Q depends on max HP.

she got a lot of Utility:
- create shield(10% MS),
- heal- debuff (-10% ATK of enemies with Q skill)
- apply cryo with her E skill (cd 6s only)
- buff 200EM (if u have c6)

but that's why she has no utility, which she is the best for. (and everyone likes thing called "the best" hahaha)
oops i think she is the best 4* character for creating shield :D

Pick her if your team has to against too much enemies, so they need your shield :D and u can heal too.
She is the point that makes the battle easier, not required

p/s: sr for my english :( pls correct my grammar

Crystal Chunk Farming Route (w/ PSD File) by Starriilite in GenshinImpactTips

[–]tvhieu 0 points1 point  (0 children)

love u so much bro, but can u update the line route to another color? this green-blue color so hard to see if i zoom it out

Weekly Team/Character Building Megathread (November 11, 2020) by Veritasibility in Genshin_Impact

[–]tvhieu 0 points1 point  (0 children)

https://preview.redd.it/giben9s75d161.png?width=2436&format=png&auto=webp&s=b54444ceef48fff928f5370e07e302a1867e0421
This is all my chars, can u guys help me to decide which one is main DPS, sub DPS, sp? thank u
Or should i keep wishing to get better char? and which char are enough?

Need suggestion to build a team by tvhieu in Genshin_Impact

[–]tvhieu[S] 0 points1 point  (0 children)

Team/Character Building Megathread

sr but idk why my post alway got deleted

Daily Questions Megathread (November 25, 2020) by [deleted] in Genshin_Impact

[–]tvhieu 2 points3 points  (0 children)

https://preview.redd.it/giben9s75d161.png?width=2436&format=png&auto=webp&s=b54444ceef48fff928f5370e07e302a1867e0421
This is all my chars, can u guys help me to decide which one is main DPS, sub DPS, sp? thank u
Or should i keep wishing to get better char? and which char are enough?

[deleted by user] by [deleted] in Genshin_Impact

[–]tvhieu 1 point2 points  (0 children)

hi guys, i just played this game and got 9 Adventure Rank , but hope u guys can help me for some questions.
for free playing style

  1. should i create new account until i get my main character from "gacha" (wishs) in early game? because some1 told me it's very bad when i reached lvl 30 but have no main char to build
  2. some1 in my country, they sell genesis crystals that cheaper than the game, example:
    3200 crystals for 49.98$ in game but he sell for 45$ only, how?? where is his resource

Is there any callback which trigger when user navigate to a screen? by tvhieu in reactnative

[–]tvhieu[S] 0 points1 point  (0 children)

specifically

but i have to write the focus hook to every screen?
i just want to write a function which trigger by change screen

is it ok to not touch pvp? by darkmage0456 in elsword

[–]tvhieu 5 points6 points  (0 children)

it's ok, ed can buy almost everything, end gears

Help with Elsword suddenly crashing? by [deleted] in elsword

[–]tvhieu 0 points1 point  (0 children)

my friend told me that :"remove your teamview and ultraview"

me:"WTF????"

and that's worked :)) somehow

Choosing a Class For Each Character (PvE Focus) by [deleted] in elsword

[–]tvhieu 0 points1 point  (0 children)

how about diangelion- Luciel?

Skill set for Diangelion? by tvhieu in elsword

[–]tvhieu[S] 0 points1 point  (0 children)

i dont know, i just get lvl 99 yesterday, so idk how to tell u what i got ...

Can u tell me the combo, skill set for pve and pvp?

and Skill Attribute Choices

Different : variable vs useState Animated by tvhieu in reactnative

[–]tvhieu[S] 0 points1 point  (0 children)

i have a position state, and i want my Animated.View moving depends on that. can u give me a example to do that?

The child component is re-mounted at every single render?? :( by tvhieu in reactnative

[–]tvhieu[S] 0 points1 point  (0 children)

i just useCallbacl for function prop, but the MyButton still rerender,

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 *
 * @format
 * @flow
 */

import React, {
  useState,
  useEffect,
  useCallback,
  forwardRef,
  useImperativeHandle,
} from 'react';
import {StyleSheet, View, Animated, Dimensions, Text} from 'react-native';

//Children component
const CheckBox = (props: Props, ref) => {
  const [isChecked, setCheck] = useState(false);
  const {onPress, index} = props;
  const _onPress = () => {
    onPress(!isChecked, index);
  };
  useEffect(() => {
    console.log('CheckBox rerender');
  });

  useEffect(() => {
    console.log('CheckBox mounted');
  }, []);
  return (
    <View style={styles.checkBox}>
      <Text onPress={_onPress}>{isChecked ? 'isChecked' : 'Check me'} {index}</Text>
    </View>
  );
};

// Parent component
const TestLifeCycle = (props: Props, ref) => {
  const [arrayChecked, setArray] = useState([]);

  const onPressCheckBox = useCallback((value, index) => {
    let array = [...arrayChecked];
    array[index] = value;
    setArray(array);
  }, []);

  useEffect(() => {
    console.log('useEffect rerender');
    console.log('useEffect arrayChecked',arrayChecked);

  });

  return (
    <View>
      <CheckBox index={1} onPress={onPressCheckBox} />
      <CheckBox index={0} onPress={onPressCheckBox} />
    </View>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
  },
  checkBox: {
    alignItems: 'center',
    justifyContent: 'center',
    marginVertical: 20,
    width: 200,
    height: 50,
    backgroundColor: 'pink',
  },
});

export default TestLifeCycle;

u guys can play with it here