Giter Club home page Giter Club logo

Comments (4)

nysamnang avatar nysamnang commented on May 26, 2024 1

@dellwatson

  _renderItem = (item, index) => (
      <View>
        <Button title=`OPEN BOTTOM SHEET-${index}` onPress={() => this[RBSheet + index].open()} />
        <RBSheet
          ref={ref => {
            this[RBSheet + index] = ref;
          }}>
          <YourOwnComponent />
        </RBSheet>
      </View>
    );

Happy coding !

from react-native-raw-bottom-sheet.

nysamnang avatar nysamnang commented on May 26, 2024

@dellwatson It's quite simple just by changing the ref name.

Example:

  <View>
        <Button
          title="OPEN BOTTOM SHEET"
          onPress={() => {
            this.RBSheet.open();
          }}
        />

        <Button
          title="OPEN BOTTOM SHEET 2"
          onPress={() => {
            this.RBSheet2.open();
          }}
        />

        <RBSheet
          ref={ref => {
            this.RBSheet = ref;
          }}>
          <YourOwnComponent />
        </RBSheet>

        <RBSheet
          ref={ref => {
            this.RBSheet2 = ref;
          }}>
          <YourOwnComponent />
        </RBSheet>
  </View>

from react-native-raw-bottom-sheet.

dellwatson avatar dellwatson commented on May 26, 2024

@nysamnang
thanks but this is static, i want to make it more dynamic.
let's say i have random amount of images, and each of them require this bottom sheet,
so I mnot sure how to call all of them

first I iterate the images,

//main_render
<View>
    images.map(item => this._renderItem(item, index))
<View>

//render_item
_renderItem= (item, index)=> {
...,
<Button title=`OPEN BOTTOM SHEET-${index}`  //renaming the title 
          onPress={() => {   this.RBSheet.open()  }}  />   **//cant rename the func here**

        <RBSheet
          ref={ref => {
            this.RBSheet = ref;
          }}>
          <YourOwnComponent />
        </RBSheet>
}

I thought it would work, without renaming them, but turns out it doesnt, because well the ref is still the same and imnot sure how to make it more dynamic.
the actionSheetIOS is pretty easy to use and dynamic without naming them all. but I want this bottomSheet for android feeling

from react-native-raw-bottom-sheet.

brixbimboavengoza avatar brixbimboavengoza commented on May 26, 2024

@dellwatson

  _renderItem = (item, index) => (
      <View>
        <Button title=`OPEN BOTTOM SHEET-${index}` onPress={() => this[RBSheet + index].open()} />
        <RBSheet
          ref={ref => {
            this[RBSheet + index] = ref;
          }}>
          <YourOwnComponent />
        </RBSheet>
      </View>
    );

Happy coding !

Hi, do you have this example in functional? ty!

from react-native-raw-bottom-sheet.

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.