manifoldco / promptui

Interactive prompt for command-line applications

Home Page:https://www.manifold.co

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Style doesn't show Up When Using custom templates with select

ABDERRAHMANE-OUALI opened this issue Β· comments

HI I'm using templates with select mode in promptUI this is the following templates

templates := &promptui.SelectTemplates{
    Active:   `{{'πŸ‘‰' .Title | cyan | bold }}`,
    Inactive: `   {{ .Title | cyan }}`,
    Selected: `{{ "βœ”" | green | bold }} {{ "Recipe" | bold }}: {{ .Title | cyan }}`,
}

and then add it to propmptUI

	prompt := promptui.Select{
		Label: "Select A Project setup",
		Items: []string{"React-Typescript", "ReactNative-Expo-Typescript"},
		Templates: templates,	
	}

	_, result, err := prompt.Run()

The Expected Result :
image

The Given Result :
image

dosen't even show the cursor to select the options