angulardart 8.0.5
angulardart: ^8.0.5 copied to clipboard
Fast and productive web framework by Google. Separate, but similar to the JavaScript framework with a similar name.
example/README.md
AngularDart Example #
A minimal example demonstrating the basics of AngularDart.
Running the example #
-
Install dependencies:
dart pub get -
Build the project:
dart run build_runner build -
Serve the application:
dart run build_runner serve web -
Open your browser to
http://localhost:8080
What this example demonstrates #
- Component creation: A simple
AppComponentwith template - Data binding: Displaying component properties in the template
- Event handling: Handling button clicks with
(click)binding - Interpolation: Using
{{ }}to display dynamic values