blob: 2421beb2140d9a003084fc08921ed86a004fec6d [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/showcase/text_badge_view/sc_text_badge_view_controller.h"
#import "ios/chrome/browser/ui/reading_list/text_badge_view.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
@implementation SCTextBadgeViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor whiteColor];
TextBadgeView* textBadge = [[TextBadgeView alloc] initWithText:@"TEXT"];
[textBadge setTranslatesAutoresizingMaskIntoConstraints:NO];
[self.view addSubview:textBadge];
// Center badge on screen.
NSArray<NSLayoutConstraint*>* constraints = @[
[self.view.centerXAnchor constraintEqualToAnchor:textBadge.centerXAnchor],
[self.view.centerYAnchor constraintEqualToAnchor:textBadge.centerYAnchor]
];
[NSLayoutConstraint activateConstraints:constraints];
}
@end