npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

yb-react-native-splash-screen

v0.0.1

Published

A JavaScript-based splash screen management library for React Native with default YB logo support

Downloads

76

Readme

yb-react-native-splash

React Native uygulamalarınız için JavaScript tabanlı, tamamen özelleştirilebilir splash screen ve boot yönetimi çözümü.

npm version npm downloads license

🌟 Özellikler

  • ✨ Hazır YB logosu ile anında kullanıma hazır
  • 🎨 İsteğe bağlı özel logo ve tasarım desteği
  • 🚀 Otomatik boot yönetimi ve geçiş animasyonları
  • ⚡️ Dark/Light tema desteği
  • 📱 iOS ve Android için platform bağımsız çalışma
  • 🎯 TypeScript ile tam tip desteği

📦 Kurulum

# npm ile
npm install yb-react-native-splash

# yarn ile
yarn add yb-react-native-splash

🔧 Platform Kurulumları

iOS Kurulumu

  1. Pod'ları yükleyin:
cd ios && pod install
  1. AppDelegate.mm dosyasını düzenleyin:
#import <YBSplashScreen/RCTYBSplashScreen.h>

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
  // ... diğer kodlar
  
  [RCTYBSplashScreen show];  // Bu satırı ekleyin
  
  return YES;
}

@end

Android Kurulumu

  1. android/settings.gradle dosyasına ekleyin:
include ':yb-react-native-splash'
project(':yb-react-native-splash').projectDir = new File(rootProject.projectDir, '../node_modules/yb-react-native-splash/android')
  1. android/app/build.gradle dosyasına ekleyin:
dependencies {
    implementation project(':yb-react-native-splash')
}
  1. MainActivity.java dosyasını düzenleyin:
import com.yb.splashscreen.YBSplashScreenModule;

public class MainActivity extends ReactActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        YBSplashScreenModule.show(this);  // Bu satırı ekleyin
        super.onCreate(savedInstanceState);
    }
}

🚀 Kullanım

1. Varsayılan YB Logo ile Kullanım (Önerilen)

import React from 'react';
import { SplashScreen } from 'yb-react-native-splash';

const App = () => {
  return (
    <>
      <YourApp />
      <SplashScreen
        bootConfig={{
          useDefaultLogo: true,  // YB logosunu kullan
          autoHide: true,        // Otomatik gizlenme
          bootDuration: 2000,    // 2 saniye göster
          backgroundColor: isDarkMode ? '#000000' : '#FFFFFF'  // Tema desteği
        }}
      />
    </>
  );
};

2. Özel Logo ile Kullanım

import React, { useRef } from 'react';
import { SplashScreen } from 'yb-react-native-splash';

const App = () => {
  const splashScreenRef = useRef(null);

  const showCustomSplash = () => {
    splashScreenRef.current?.updateConfig({
      imageSource: require('./assets/logo.png'),
      backgroundColor: '#3498DB',
      animationType: 'fade',
      duration: 2000
    });
    splashScreenRef.current?.show();
  };

  return (
    <>
      <YourApp onAction={showCustomSplash} />
      <SplashScreen ref={splashScreenRef} />
    </>
  );
};

3. API Beklerken Kullanım

const App = () => {
  const splashScreenRef = useRef(null);
  const [isDataLoaded, setIsDataLoaded] = useState(false);

  useEffect(() => {
    loadData().then(() => {
      setIsDataLoaded(true);
      splashScreenRef.current?.hide();
    });
  }, []);

  return (
    <>
      <YourApp />
      <SplashScreen
        ref={splashScreenRef}
        bootConfig={{
          useDefaultLogo: true,
          autoHide: false  // Manuel kontrol
        }}
      />
    </>
  );
};

📚 API

SplashScreen Props

| Prop | Tip | Varsayılan | Açıklama | |------|-----|------------|-----------| | bootConfig | BootConfig | undefined | Boot yapılandırması | | initialConfig | SplashScreenConfig | undefined | Başlangıç yapılandırması |

BootConfig

interface BootConfig {
  useDefaultLogo?: boolean;     // YB logosunu kullan
  autoHide?: boolean;           // Otomatik gizlenme
  bootDuration?: number;        // Boot süresi (ms)
  backgroundColor?: string;     // Arka plan rengi
  animationType?: 'none' | 'fade' | 'slide'; // Animasyon tipi
  animationDuration?: number;   // Animasyon süresi (ms)
  onBootComplete?: () => void;  // Tamamlandığında çağrılır
}

Ref Metodları

| Metod | Açıklama | |-------|-----------| | show() | Splash ekranını gösterir | | hide() | Splash ekranını gizler | | updateConfig(config) | Yapılandırmayı günceller |

🎨 Özelleştirme

1. Animasyonlar

<SplashScreen
  bootConfig={{
    animationType: 'slide',
    animationDuration: 800,
    backgroundColor: '#3498DB'
  }}
/>

2. Tema Desteği

const isDarkMode = useColorScheme() === 'dark';

<SplashScreen
  bootConfig={{
    useDefaultLogo: true,
    backgroundColor: isDarkMode ? '#000000' : '#FFFFFF',
    // Status bar otomatik olarak temaya uyum sağlar
  }}
/>

3. Özel Geçiş Efektleri

<SplashScreen
  bootConfig={{
    animationType: 'fade',
    animationDuration: 1000,
    // Smooth geçiş efekti
  }}
/>

📱 Örnek Uygulama

Detaylı örnek için example klasörüne bakabilirsiniz:

git clone https://github.com/ysf-bkr/yb-react-native-splash.git
cd yb-react-native-splash/example
yarn install
cd ios && pod install && cd ..
npm start

🤝 Katkıda Bulunma

  1. Fork edin
  2. Feature branch oluşturun (git checkout -b feature/amazing-feature)
  3. Değişikliklerinizi commit edin (git commit -m 'feat: add amazing feature')
  4. Branch'inizi push edin (git push origin feature/amazing-feature)
  5. Pull Request oluşturun

📄 Lisans

MIT License - detaylar için LICENSE dosyasına bakın.

📞 İletişim ve Destek

🙏 Teşekkürler

Bu kütüphaneyi geliştirirken ilham aldığımız ve katkıda bulunan herkese teşekkürler.


Made with ❤️ by Yusuf B.