From 39d835bf66e94e6df1a604c09646742efbdc9747 Mon Sep 17 00:00:00 2001 From: Mike Date: Wed, 7 Aug 2024 11:28:17 -0400 Subject: [PATCH] comment --- .../_v4/Vault/Landing/RadioButtons/RadioButtons.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dydx/dydxViews/dydxViews/_v4/Vault/Landing/RadioButtons/RadioButtons.swift b/dydx/dydxViews/dydxViews/_v4/Vault/Landing/RadioButtons/RadioButtons.swift index 64c7ce0c8..94c339388 100644 --- a/dydx/dydxViews/dydxViews/_v4/Vault/Landing/RadioButtons/RadioButtons.swift +++ b/dydx/dydxViews/dydxViews/_v4/Vault/Landing/RadioButtons/RadioButtons.swift @@ -13,7 +13,8 @@ protocol RadioButtonContentDisplayable: Equatable { var displayText: String { get } } -/// A simplified version 2 of TabGroup. Use TabGroup when the radio buttons are not displaying exclusively Text. +/// A simplified version of TabGroup which supports binding for the selected option and does not require a view builder for each item. +/// Use TabGroup when the radio buttons are not displaying exclusively Text. struct RadioButtonGroup: View { @Binding var selected: ButtonItem