promptui icon indicating copy to clipboard operation
promptui copied to clipboard

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

Open ABDERRAHMANE-OUALI opened this issue 5 years ago • 0 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

ABDERRAHMANE-OUALI avatar Jan 18 '21 14:01 ABDERRAHMANE-OUALI