Skip to content
This repository was archived by the owner on Apr 19, 2024. It is now read-only.

Commit

Permalink
increased size of prompt examples
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecAivazis committed Apr 18, 2017
1 parent 0936fbb commit 8c82316
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ go run examples/validation.go
## Prompts

### Input
<img src="https://media.giphy.com/media/3og0IxS8JsuD9Z8syA/giphy.gif" width="300px"/>
<img src="https://media.giphy.com/media/3og0IxS8JsuD9Z8syA/giphy.gif" width="400px"/>

```golang
name := ""
Expand All @@ -79,7 +79,7 @@ survey.AskOne(prompt, &name, nil)


### Password
<img src="https://media.giphy.com/media/26FmQr6mUivkq71GE/giphy.gif" width="300px" />
<img src="https://media.giphy.com/media/26FmQr6mUivkq71GE/giphy.gif" width="400px" />

```golang
password := ""
Expand All @@ -91,7 +91,7 @@ survey.AskOne(prompt, &password, nil)


### Confirm
<img src="https://media.giphy.com/media/3oKIPgsUmTp4m3eo4E/giphy.gif" width="300px"/>
<img src="https://media.giphy.com/media/3oKIPgsUmTp4m3eo4E/giphy.gif" width="400px"/>

```golang
name := false
Expand All @@ -103,7 +103,7 @@ survey.AskOne(prompt, &name, nil)


### Select
<img src="https://media.giphy.com/media/3oKIPxigmMu5YqpUPK/giphy.gif" width="300px"/>
<img src="https://media.giphy.com/media/3oKIPxigmMu5YqpUPK/giphy.gif" width="400px"/>

```golang
color := ""
Expand All @@ -116,7 +116,7 @@ survey.AskOne(prompt, &color, nil)


### MultiSelect
<img src="https://media.giphy.com/media/3oKIP8lHYFtGeQDH0c/giphy.gif" width="300px"/>
<img src="https://media.giphy.com/media/3oKIP8lHYFtGeQDH0c/giphy.gif" width="400px"/>

```golang
days := []string{}
Expand Down

0 comments on commit 8c82316

Please sign in to comment.