[SOLUTION] NativeTick() UMG not running!!!

When you override NativeTick() in C++ and it not running. Make sure you call Super::NativeConstruct() in NativeConstruct().

void YourWidget::NativeConstruct()
{
    Super::NativeConstruct();
}

This resolved my problem!!!