# Can we actually make it so that text input can show up to another screen?

**URL:** https://community.thunkable.com/t/can-we-actually-make-it-so-that-text-input-can-show-up-to-another-screen/3208600
**Category:** Questions about Thunkable X
**Created:** [September 17, 2024, 3:39pm UTC](https://community.thunkable.com/t/can-we-actually-make-it-so-that-text-input-can-show-up-to-another-screen/3208600 "2024-09-17T15:39:21Z")
**Posts on this page:** 11
**Page:** 1

<div class="post-metadata">

### Author: ![ebaik1309hh3wqt](https://avatars.discourse-cdn.com/v4/letter/e/f19dbf/32.png) [@ebaik1309hh3wqt](https://community.thunkable.com/u/ebaik1309hh3wqt)
#### Post date: [September 17, 2024, 3:39pm UTC](https://community.thunkable.com/t/can-we-actually-make-it-so-that-text-input-can-show-up-to-another-screen/3208600/1 "2024-09-17T15:39:21Z")

</div>

I’m very new to Thunkable and I have been using it for my Congressional App challenge, and I need help. What I want to do is actually get multiple text inputs and then make it show up in another screen all together. Can somebody help? Also, I looked at many discussions about scrollable screens, but I just don’t seem to get it. Many of the discussions I looked at supported an older version and I wasn’t able to do what they had done.

---

<div class="post-metadata">

### Author: ![matt\_conroy](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/matt_conroy/32/150843_2.png) [@matt\_conroy](https://community.thunkable.com/u/matt_conroy)
#### Post date: [September 17, 2024, 4:03pm UTC](https://community.thunkable.com/t/can-we-actually-make-it-so-that-text-input-can-show-up-to-another-screen/3208600/2 "2024-09-17T16:03:28Z")

</div>

Hi ebaik1309hh3wqt, welcome to Thunkable! 🎉

Be sure to check out [How to ask Great Questions v2.0](https://community.thunkable.com/t/how-to-ask-great-questions-v2-0/2689983/1), the [Community Guidelines](https://community.thunkable.com/t/community-guidelines/78/8), and our [Getting Started Guide](https://docs.thunkable.com/getting-started/get-started) to make the best of your Thunkable Community experience!

Are you looking to take the text entered in the text input and display it on another screen?

Most simply, you’ll want to brush up on [variables](https://docs.thunkable.com/blocks/blocks/variables-overview) and use those to store the value entered in the text input and then, on the later screen, call the variable’s data as the text for a label component.

---

<div class="post-metadata">

### Author: ![ebaik1309hh3wqt](https://avatars.discourse-cdn.com/v4/letter/e/f19dbf/32.png) [@ebaik1309hh3wqt](https://community.thunkable.com/u/ebaik1309hh3wqt)
#### Post date: [September 17, 2024, 4:44pm UTC](https://community.thunkable.com/t/can-we-actually-make-it-so-that-text-input-can-show-up-to-another-screen/3208600/3 "2024-09-17T16:44:05Z")

</div>

Yeah, I’m trying to get multiple text inputs and then display on another screen. Am I able to share my project so you can take a look?

---

<div class="post-metadata">

### Author: ![matt\_conroy](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/matt_conroy/32/150843_2.png) [@matt\_conroy](https://community.thunkable.com/u/matt_conroy)
#### Post date: [September 17, 2024, 8:19pm UTC](https://community.thunkable.com/t/can-we-actually-make-it-so-that-text-input-can-show-up-to-another-screen/3208600/4 "2024-09-17T20:19:30Z")

</div>

@ebaik1309hh3wqt Sure, you can just copy and paste the link to your project. This way we could find the best solution for you.

![](https://downloads.intercomcdn.com/i/o/759644115/d4a89684a0bda74ab75c59e6/Screenshot+2023-06-08+at+4.13.55+PM.png)

---

<div class="post-metadata">

### Author: ![ebaik1309hh3wqt](https://avatars.discourse-cdn.com/v4/letter/e/f19dbf/32.png) [@ebaik1309hh3wqt](https://community.thunkable.com/u/ebaik1309hh3wqt)
#### Post date: [September 18, 2024, 3:03pm UTC](https://community.thunkable.com/t/can-we-actually-make-it-so-that-text-input-can-show-up-to-another-screen/3208600/5 "2024-09-18T15:03:48Z")

</div>

okay! here it is  
[https://x.thunkable.com/projects/66e1b5b99c84f39432a73ce9/ed387d09-4ac1-4f09-8f1e-19e5e437037c/designer](https://x.thunkable.com/projects/66e1b5b99c84f39432a73ce9/ed387d09-4ac1-4f09-8f1e-19e5e437037c/designer)  
sorry for the late response

---

<div class="post-metadata">

### Author: ![matt\_conroy](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/matt_conroy/32/150843_2.png) [@matt\_conroy](https://community.thunkable.com/u/matt_conroy)
#### Post date: [September 18, 2024, 3:36pm UTC](https://community.thunkable.com/t/can-we-actually-make-it-so-that-text-input-can-show-up-to-another-screen/3208600/6 "2024-09-18T15:36:48Z")

</div>

This is very close! You’ll need to capture the text inputs via a button click, however. Then, on a later screen, set the label’s text to the variable.

---

<div class="post-metadata">

### Author: ![ebaik1309hh3wqt](https://avatars.discourse-cdn.com/v4/letter/e/f19dbf/32.png) [@ebaik1309hh3wqt](https://community.thunkable.com/u/ebaik1309hh3wqt)
#### Post date: [September 19, 2024, 3:12pm UTC](https://community.thunkable.com/t/can-we-actually-make-it-so-that-text-input-can-show-up-to-another-screen/3208600/7 "2024-09-19T15:12:14Z")

</div>

I think I sort of got the first part, but I’m kind of confused on the second. Do I do the initialize block to make it into a variable?

---

<div class="post-metadata">

### Author: ![ebaik1309hh3wqt](https://avatars.discourse-cdn.com/v4/letter/e/f19dbf/32.png) [@ebaik1309hh3wqt](https://community.thunkable.com/u/ebaik1309hh3wqt)
#### Post date: [September 23, 2024, 3:28pm UTC](https://community.thunkable.com/t/can-we-actually-make-it-so-that-text-input-can-show-up-to-another-screen/3208600/8 "2024-09-23T15:28:42Z")

</div>

![Screenshot 2024-09-23 at 8.28.12 AM](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/b/e/be1c75ce71777cf0fd730694b37ca993b4735cca.png)  
would this be how you store it

---

<div class="post-metadata">

### Author: ![matt\_conroy](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/matt_conroy/32/150843_2.png) [@matt\_conroy](https://community.thunkable.com/u/matt_conroy)
#### Post date: [September 23, 2024, 3:53pm UTC](https://community.thunkable.com/t/can-we-actually-make-it-so-that-text-input-can-show-up-to-another-screen/3208600/9 "2024-09-23T15:53:31Z")

</div>

On a small scale, this is generally fine. If you are wanting to keep those values between sessions, the only small change would be to use a stored variable instead. App variables [will initialize](https://docs.thunkable.com/blocks/blocks/variables-overview) each time the app is closed and then again re-opened.

---

<div class="post-metadata">

### Author: ![ebaik1309hh3wqt](https://avatars.discourse-cdn.com/v4/letter/e/f19dbf/32.png) [@ebaik1309hh3wqt](https://community.thunkable.com/u/ebaik1309hh3wqt)
#### Post date: [September 23, 2024, 4:12pm UTC](https://community.thunkable.com/t/can-we-actually-make-it-so-that-text-input-can-show-up-to-another-screen/3208600/10 "2024-09-23T16:12:49Z")

</div>

Ohhhhh okay.  
I have another question though. How do I make the text input show up? I know you mentioned how I could do that but I don’t really get it. Could you explain more please?

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/0/f/0f59f292712368bce16ff80133ae10de8a6f27e8.png) [@system](https://community.thunkable.com/u/system)
#### Post date: [December 22, 2024, 4:13pm UTC](https://community.thunkable.com/t/can-we-actually-make-it-so-that-text-input-can-show-up-to-another-screen/3208600/11 "2024-12-22T16:13:42Z")

</div>

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.
