Skip to content

Commit

Permalink
Rename SafeAreaElement to SafeAreaContainer
Browse files Browse the repository at this point in the history
  • Loading branch information
kochounoyume committed Sep 18, 2024
1 parent 4ada0d2 commit 81b7696
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ namespace MinimalUtility.UIToolkit
/// <summary>
/// セーフエリアを考慮した<see cref="VisualElement"/>.
/// </summary>
public class SafeAreaElement : VisualElement
public class SafeAreaContainer : VisualElement
{
/// <summary>
/// UIBuilderのLibraryに登録するためのUXML要素のファクトリクラス.
/// </summary>
public class SafeAreaFactory : UxmlFactory<SafeAreaElement, UxmlTraits>
public class SafeAreaContainerFactory : UxmlFactory<SafeAreaContainer, UxmlTraits>
{
}

/// <summary>
/// Initializes a new instance of the <see cref="SafeAreaElement"/> class.
/// Initializes a new instance of the <see cref="SafeAreaContainer"/> class.
/// </summary>
public SafeAreaElement()
public SafeAreaContainer()
{
style.flexGrow = 1;
style.flexShrink = 1;
Expand Down

0 comments on commit 81b7696

Please sign in to comment.