Skip to content

Instantly share code, notes, and snippets.

View nicowernli's full-sized avatar
🏠
Working from home

Nicolás Wernli nicowernli

🏠
Working from home
  • Málaga, Spain
  • 00:00 (UTC +02:00)
  • LinkedIn in/nwernli
View GitHub Profile
@nicowernli
nicowernli / strings.xml
Created December 17, 2019 14:03
Integration Strings
<!-- android/app/src/integration/res/values/strings.xml -->
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">My App - INT</string>
</resources>
@nicowernli
nicowernli / AndroidManifest.xml
Created December 17, 2019 14:05
AndroidManifest label strings
...
<application
android:name="io.flutter.app.FlutterApplication"
android:label="@string/app_name"
...
@nicowernli
nicowernli / app.config.ts
Created July 18, 2024 13:09
Summary on adding animations module to angular config
// other imports...
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
export const appConfig: ApplicationConfig = {
providers: [
// all your providers...
provideAnimationsAsync(),
],
};
import { Component, signal } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import 'zone.js';
import { ModalComponent } from './app/modal/modal.component';
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
@Component({
selector: 'app-root',
standalone: true,
imports: [ModalComponent],