“Imagem local nativa de reação não mostrando iOS” Respostas de código

Imagem local nativa de reação não mostrando iOS

post_install do |installer|
  installer.pods_project.targets.each do |target|
    if target.name == "React"
      target.remove_from_project
    end
  end
  find_and_replace("../node_modules/react-native/Libraries/Image/RCTUIImageViewAnimated.m",
    "_currentFrame.CGImage;","_currentFrame.CGImage ;} else { [super displayLayer:layer];")
end

def find_and_replace(dir, findstr, replacestr)
  Dir[dir].each do |name|
      text = File.read(name)
      replace = text.gsub(findstr,replacestr)
      if text != replace
          puts "Fix: " + name
          File.open(name, "w") { |file| file.puts replace }
          STDOUT.flush
      end
  end
  Dir[dir + '*/'].each(&method(:find_and_replace))
end
Troubled Trout

Imagem local nativa de reação não mostrando iOS

post_install do |installer|
  installer.pods_project.targets.each do |target|
    if target.name == "React"
      target.remove_from_project
  end
end
Troubled Trout

Respostas semelhantes a “Imagem local nativa de reação não mostrando iOS”

Perguntas semelhantes a “Imagem local nativa de reação não mostrando iOS”

Mais respostas relacionadas para “Imagem local nativa de reação não mostrando iOS” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código