Christopher Fujino 75b13f7a88 Revert "Remove MaterialControls from examples/flutter_view (#57621)"
This reverts commit 12d83a85897e99ff03a6c0fbcda250b3665887e5. That
commit was accidentally pushed to the wrong branch.
2020-05-27 17:25:31 -07:00

36 lines
898 B
Objective-C

// Copyright 2014 The Flutter 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 <Foundation/Foundation.h>
#import "NativeViewController.h"
#import "MDButton.h"
@interface NativeViewController ()
@property int counter;
@property (weak, nonatomic) IBOutlet UILabel* incrementLabel;
@end
@implementation NativeViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.counter = 0;
}
- (IBAction)handleIncrement:(MDButton*)sender {
[self.delegate didTapIncrementButton];
}
- (void)didReceiveIncrement {
self.counter++;
NSString* text = [NSString stringWithFormat:@"Flutter button tapped %d %@.",
self.counter,
(self.counter == 1)? @"time" : @"times"];
self.incrementLabel.text = text;
}
@end