Code Monkey home page Code Monkey logo

Comments (5)

LeoLeBras avatar LeoLeBras commented on June 16, 2024 1

That's something very specific that could be resolved by writing a custom <BottomNavigation /> :

import React from 'react'
import { TabStack } from 'react-router-navigation'
import { TabViewAnimated } from 'react-native-tab-view'

class CustomBottomNavigation extends React.Component {
  renderScene = () => {
    // Load tabs lazily with your own needs
    // (return null or the current scene)
  }
  render() {
    return (
      <TabStack
        {...this.props}
        render={({ navigationState }) => (
          <TabViewAnimated
            navigationState={navigationState}
            configureTransition={() => null}
            renderScene={this.renderScene}
            renderFooter={/* Render a bottom tab bar */}
          />
        )}
      />
    )
  }
}

export default CustomBottomNavigation

from react-router-navigation.

LeoLeBras avatar LeoLeBras commented on June 16, 2024

Thanks for your feedback @CharlesMangwa.

<BottomNavigation /> will implement 2 new props for next release (beta) :

  • lazy boolean : whether to load tabs lazily when you start switching
  • style StyleSheet : override or extend the default style for <View /> container

What do you think about this?

from react-router-navigation.

CharlesMangwa avatar CharlesMangwa commented on June 16, 2024

Sounds like a nice idea! But would it mean that all the tabs could just be whether "lazily mounted" or not? In other words: would we have the possibility to choose which tab to load or not?

from react-router-navigation.

CharlesMangwa avatar CharlesMangwa commented on June 16, 2024

Thx! That's exactly what I had in mind: looking forward to seeing the next update 👌

from react-router-navigation.

LeoLeBras avatar LeoLeBras commented on June 16, 2024

New props lazy and style added - dd9a6b8

from react-router-navigation.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.