Affected Area
All alphaTex samples.
What's wrong or missing?
CoderLine/alphaTab#2520
It could be a useful addition to show also the used settings and other options used to display the alphaTex sample.
|
export interface AlphaTexSampleProps { |
|
tracks?: number[] | "all"; |
|
children: string | React.ReactElement; |
|
player: boolean; |
|
settings?: alphaTab.json.SettingsJson; |
|
} |
Specifically:
- The custom settings overrides
- Whether the player is active
- Which tracks are displayed
The exact way of displaying it needs to be checked. We don't want to blow up all pages with additional tabs. Only when really needed we should show some additional details.
Affected Area
All alphaTex samples.
What's wrong or missing?
CoderLine/alphaTab#2520
It could be a useful addition to show also the used settings and other options used to display the alphaTex sample.
alphaTabWebsite/src/components/AlphaTexSample/index.tsx
Lines 9 to 14 in 2a17e78
Specifically:
The exact way of displaying it needs to be checked. We don't want to blow up all pages with additional tabs. Only when really needed we should show some additional details.