| // Copyright 2019 The Fuchsia Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| library fuchsia.ui.views; | |
| using fuchsia.intl; | |
| /// |ViewConfig| is a collection of properties that can affect the rendering of | |
| /// a |View|'s contents. This might include internationalization settings, font | |
| /// scaling, night mode, high contrast mode, etc. | |
| table ViewConfig { | |
| 1: fuchsia.intl.Profile intl_profile; | |
| // Add others as needed. | |
| }; |